英 ['sʌbstər]   美 ['sʌbstər]  

abbr.substructure 下部結構,地下建築

php substr()函數 語法

作用:截取字串

語法:substr(string,start,length)

參數:

參數描述
#string必要。規定要傳回其中一部分的字串。
start必要。規定在字串的何處開始。正數 - 在字串的指定位置開始,負數 - 在從字串結尾開始的指定位置開始,0 - 在字串中的第一個字元開始。
length可選。規定被傳回字串的長度。預設是直到字串的結尾。正數 - 從 start 參數所在的位置傳回的長度,負數 - 從字串末端傳回的長度。

說明:傳回字串的一部分。若 start 參數是負數且 length 小於或等於 start,則 length 為 0。

php substr()函數 範例

<?php
echo substr("Hello world",6);
?>

運行實例»

點擊"運行實例"按鈕查看線上實例

輸出:

world
<?php
$i = "i'm study in php.cn";
echo substr($i,8);
?>

#運行實例»

#點擊"運行實例" 按鈕查看線上實例

############# #輸出:######
y in php.cn