ltrim() 函數用於從字串的開頭刪除空格或其他字元。
ltrim(str, charlist)
#str − 要檢查的字串
charlist − 指定要從字串中刪除的字元。如果參數缺失,則刪除下列所有字元
"\0" − NULL
"\ t" − 製表符
"
#" − 換行符號
#"\x0B" − 垂直製表符
#"\r" − 回車符號
#回傳值
ltrim()函數傳回修改後的字串。
Live Demo
<?php $s = " Welcome!"; echo "Without ltrim = " . $s; echo "<br>"; echo "With ltrim = " . ltrim($s); ?>
輸出
Without ltrim = Welcome! With ltrim = Welcome!
<?php $string = " website"; echo "Welcome to the ".ltrim($string); ?>###輸出###
Welcome to the website###
以上是在PHP中的ltrim()函數的詳細內容。更多資訊請關注PHP中文網其他相關文章!