php刪除字串第一個字元的方法:1、使用substr函數,語法格式「substr(字串,1)」;2、使用substr_replace()函數,語法格式「substr_replace(字串,"",0,1)」。
本教學操作環境:windows7系統、PHP7.1版,DELL G3電腦
方法1:使用substr函數
<?php echo substr("Hello world",1); ?>
輸出:
ello world
說明:
substr(string,start,length)
描述 | |
---|---|
string | 必要。規定要傳回其中一部分的字串。
| 正數- 在字串的指定位置開始
0 - 在字串中的第一個字符處開始 |
| 可選。規定要傳回的字串長度。預設是直到字串的結尾。
負數- 從字串末端回傳
##傳回值:傳回字串的提取部分,如果失敗則傳回FALSE,或傳回一個空字串。
方法2:使用substr_replace()函數
<?php echo substr_replace("abcdef","",0,1); ?>輸出:
bcdef說明:
#substr_replace() 函數把字串的一部分替換為另一個字串。 | 語法:substr_replace(string,replacement,start,length)
| string
必要。規定要檢查的字串。 |
replacement
| 必要。規定在字串的何處開始替換。
以上是php怎麼刪除字串第一位字符的詳細內容。更多資訊請關注PHP中文網其他相關文章!