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() は大文字と小文字を区別しません。この 2 つの構文は似ています。
str_ireplace() の構文は次のとおりです。
mixed str_ireplace ( mixed $search , mixed $replace , mixed $subject [, int &$count ] ) mixed str_replace ( mixed $search , mixed $replace , mixed $subject [, int &$count ] )
これら 2 つの関数は文字列または配列を返します。この文字列または配列は、件名のすべての検索を 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 中国語 Web サイトの他の関連記事を参照してください。