在php中,可以利用substr_replace()函數來刪除字串中多個字符,只需要從指定位置開始,將指定數目的字符替換為空字符即可;語法格式“substr_replace(字符串,'',開始位置,替換數目)」。
本教學操作環境:windows7系統、PHP7.1版,DELL G3電腦
php 刪除字串中多個字元
可以利用substr_replace()函數從指定位置開始,將指定數目的字元替換為空字元即可。
程式碼範例如下:
<?php $str = 'hello,world,hello,world'; $replace = ''; echo substr_replace($str, $replace, 0,5); ?>
輸出:
,world,hello,world
說明:
substr_replace() 函數把字串的一部分替換為另一個字串。
substr_replace() 函數的語法如下:
mixed substr_replace ( mixed $string , mixed $replacement , mixed $start [, mixed $length ] )
substr_replace() 在字串 string 的副本中將由 start 和可選的 length 參數限定的子字串使用 replacement 進行替換。
如果 start 為正數,替換將從 string 的 start 位置開始。如果 start 為負數,替換將從 string 的倒數第 start 個位置開始。
如果設定了 length 參數且為正數,就表示 string 中被替換的子字串的長度。如果設定為負數,就表示待替換的子字串結尾處距離 string 末端的字元個數。如果沒有提供此參數,那麼預設為 strlen(string)(字串的長度)。當然,如果 length 為 0,那麼這個函數的函數為將 replacement 插入 string 的 start 位置處。
推薦學習:《PHP影片教學》
以上是php怎麼刪除字串中多個字符的詳細內容。更多資訊請關注PHP中文網其他相關文章!