php取代中文冒號的方法:1、使用str_ireplace()函數,文法「str_ireplace(中文冒號, 替換值, $str)」;2、使用str_replace()函數,文法「str_replace(中文冒號,替換值,$str)」。
本教學操作環境:windows7系統、PHP7.1版、DELL G3電腦
在php中,可以利用str_ireplace() 和str_replace() 函數來取代字串中的中文冒號。
str_ireplace() 和 str_replace 使用新的字串取代原來字串中指定的特定字串,str_replace 區分大小寫,str_ireplace() 不區分大小寫,兩者語法相似。
str_ireplace() 的語法如下:
mixed str_ireplace ( mixed $search , mixed $replace , mixed $subject [, int &$count ] ) mixed str_replace ( mixed $search , mixed $replace , mixed $subject [, int &$count ] )
這兩個函數傳回一個字串或陣列。該字串或陣列是將 subject 中全部的 search 用 replace 替換之後的結果。參數 count 表示執行替換的次數。
使用範例如下:
<?php header("content-type:text/html;charset=utf-8"); $str = 'hello:world:hello:world'; echo "原字符串: ".$str."<br>"; $replace = '-'; $search = ':'; echo str_replace($search, $replace, $str)."<br>"; echo str_ireplace($search, $replace, $str); ?>
推薦學習:《PHP影片教學》
以上是php怎麼替換中文冒號的詳細內容。更多資訊請關注PHP中文網其他相關文章!