英 ['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()函數 範例
輸出:
world
############# #輸出:######
y in php.cn