ฟังก์ชัน explode()
แตกสตริงออกเป็นสตริงย่อย ด้วยฟังก์ชัน explode()
แตกสตริงออกเป็นสตริงย่อย ด้วยฟังก์ชัน explode()
รูปแบบ
explode(separator , string)
separator คือ สตริงที่ใช้แบ่งส่วน
string คือ สตริงที่ต้องการแบ่ง
explode(separator , string)
separator คือ สตริงที่ใช้แบ่งส่วน
string คือ สตริงที่ต้องการแบ่ง
ตัวอย่าง
<?php
$str = "this is the test string";
print_r (explode(" ",$str));
?>
<?php
$str = "this is the test string";
print_r (explode(" ",$str));
?>
0 ความคิดเห็น:
แสดงความคิดเห็น