substr คือ คำสั่งตัดคำบนภาษา PHP ซึ่งมีประโยชน์อย่างมากเวลาที่เราต้องการตัดคำในบางคำจากประโยคเต็ม ๆ
ภาพรวมของคำสั่ง substr php
1. ใช้สำหรับตัดคำจากประโยคเต็ม ๆ
2. มีค่า Parameter ที่สำคัญ 3 ค่า คือ ประโยค, เริ่มตัดคำ และจำนวนการตัดคำ
ตัวอย่างโปรแกรม
<?
$date = date("Ymd");
echo "Original data = ".$date;
echo "<br/>substr year = ".substr($date, 0, 4);
echo "<br/>substr month = ".substr($date, 4, 2);
echo "<br/>substr month = ".substr($date, 6, 2);
?>
ผลลัพธ์
Original data = 20130320
substr year = 2013
substr month = 03
substr month = 20