วันพฤหัสบดีที่ 6 ตุลาคม พ.ศ. 2559

ตัดคำ PHP ตัดที่ต้องการ PHP (substr)

ตัดคำ PHP ตัดที่ต้องการ PHP (substr)


substr คือ คำสั่งตัดคำบนภาษา PHP ซึ่งมีประโยชน์อย่างมากเวลาที่เราต้องการตัดคำในบางคำจากประโยคเต็ม ๆ

ภาพรวมของคำสั่ง substr php
1. ใช้สำหรับตัดคำจากประโยคเต็ม ๆ
2. มีค่า Parameter ที่สำคัญ 3 ค่า คือ ประโยค, เริ่มตัดคำ และจำนวนการตัดคำ

ตัวอย่างโปรแกรม
1
2
3
4
5
6
7
8
9
<?
 
    $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);
 
?>

ผลลัพธ์
1
2
3
4
Original data = 20130320
substr year = 2013
substr month = 03
substr month = 20

ไม่มีความคิดเห็น:

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

Set MongoDB in the windows path environment

  Let’s set MongoDB in the windows environment in just a few steps. Step 1: First download a suitable MongoDB version according to your mach...