php中substr()函數的用法:substr()函數用來傳回字串的一部份。函數語法:【substr(string, start, length)】,其中參數length是可選的,用於規定要傳回的字串長度。
substr()函數用於傳回字串的一部分。
(推薦教學:php圖文教學)
函數語法:
substr(string,start,length)
參數介紹:
string 必需。規定要傳回其中一部分的字串。
start 必需。規定在字串的何處開始。
正數- 在字串的指定位置開始上
中的第一個字元處開始
影片教學
)程式碼範例:<?php echo substr("Hello world!",6); ?>
world!
<?php echo substr("Hello world!",6,5); ?>
world
以上是php中substr()函數有什麼用法的詳細內容。更多資訊請關注PHP中文網其他相關文章!