วันอาทิตย์ที่ 11 พฤษภาคม พ.ศ. 2557

20:03
ฟังก์ชัน implode()
สร้าง string จากข้อมูลใน array ด้วยฟังก์ชัน implode()

 

รูปแบบ
implode(separator , array)

separator คือ สตริงที่ใช้แบ่งข้อความ ค่า default คือ ""

array คือ array ที่มีข้อมูล


ตัวอย่าง
<?php

$a = array('this','is','the','test','string');
echo implode(" ",$a);

?>

ผลลัพธ์this is the test string

0 ความคิดเห็น:

แสดงความคิดเห็น