ฟังก์ชัน
join()
สร้าง
string จากข้อมูลใน array ด้วยฟังก์ชัน join()
ฟังก์ชัน join() เป็น Alias ของฟังก์ชัน implode()
รูปแบบ
join(separator , array)
separator
คือ สตริงที่ใช้แบ่งข้อความ ค่า default คือ ""
array
คือ array ที่มีข้อมูล
ตัวอย่าง
<?php
$a = array('this','is','the','test','string');
echo join(" ",$a);
?>
ผลลัพธ์
this is the test string