弦交換。
構文: string str_replace(string needle, string str, string haystack);
戻り値: string
関数の種類: データ処理
内容説明
この関数は、文字列 str を haystack 文字列に代入し、すべての針を str に置き換えます。 mlevine@adtraq.com (1999 年 4 月 11 日) は、PHP バージョン 3.0.7 にはこの関数にいくつかのバグがあると指摘しました。一方、nadeem@bleh.org (1999 年 6 月 5 日) は、PHP バージョン 3.0.8 では次のように付け加えました。機能は通常に戻ります。
使用例
次の例は、%body%をblackに置き換えます
< php
$bodytag = str_replace("%body%", "black", "
"); echo $bodytag;
>
形式:
[@str_replace("置換される古いコンテンツ", "元のコンテンツを置換する新しい文字", 置換されるコンテンツの $変数名)]
[@str_replace(array( 'Old 1', 'Old 2', 'Old 3'), array('New 1', 'New 2', 'New 3'), $置換されたコンテンツの変数名)]
[@str_replace(array( 'Old 1', 'Old 2', 'Old 3'), 'New content', $置換されたコンテンツの変数名)]
例:
多対 1 置換: すべての
を置換したいです。コンテンツフィールドの
タグがクリアされ、空の
[@str_replace(array('
','
'), '', $Content)]
One -to-one 置換: コンテンツ フィールド内のすべての
タグを
に置き換えます
[@str_replace('
', '
', $Content)]
Many-対多置換: フィールドの
を
に置き換え、
を
に置き換えます。
http://www.bkjia.com/PHPjc/364526.htmlwww.bkjia.com本当http://www.bkjia.com/PHPjc/364526.html技術記事弦交換。 構文: string str_replace(string needle, string str, string haystack); 戻り値: string 関数の種類: データ処理 内容の説明 この関数は、文字列 str を...
に置き換えます。