在PHP中,可以使用substr_replace()函數來取代字串的首字符,語法格式「substr_replace(指定字串物件,用於替換的字元,0,1)」。 substr_replace()函數可以把字串的一部分替換為另一個字串。
本教學操作環境:windows7系統、PHP7.1版,DELL G3電腦
php取代字串首字
<?php $str1 = 'hello world!'; $str2 = substr_replace($str1,'H',0,1); print_r($str2); ?>
輸出:
Hello world!
【推薦學習:《PHP影片教學》】
相關函數說明:
substr_replace() 函數把字串的一部分替換為另一個字串。文法:
substr_replace(string,replacement,start,length)
註解:若 start 參數是負數且 length 小於或等於 start,則 length 為 0。
傳回值: 傳回被替換的字串。如果 string 是數組,則傳回數組。
更多程式相關知識,請造訪:程式設計影片! !
以上是php怎麼替換首字符的詳細內容。更多資訊請關注PHP中文網其他相關文章!