ホームページ >バックエンド開発 >PHPチュートリアル >PHP 配列の 1 対 1 置換の実装コードでは、2 つの位置間の文字が * 記号で置換されることが指定されています
PHP の substr_replace は、指定された 2 つの位置の間の文字を * コードで置き換えます。必要な友達はそれを参照できます。
コードは次のとおりです:
$username = "zongzi"; echo substr_replace($username,'**','1','2');
substr_replace() 関数は、string の一部を別の文字列に置き換えます。
substr_replace(string,replacement,start,length)
パラメータ | 説明 |
---|---|
文字列 | 必須。チェックする文字列を指定します。 |
交換 | が必要です。挿入する文字列を指定します。 |
開始 |
必須。文字列内のどこから置換を開始するかを指定します。
|
charlist |
オプション。置換する文字数を指定します。
|
注: start が負で、length が start 以下の場合、length は 0 です。
例
コードは次のとおりです:
<?php echo substr_replace("Hello world","earth",6); ?>
出力:
Hello Earth
次のメソッドは、キーワードのマッチングとキーワードに対する特別な処理をそれぞれ実行する機能を実現できます。コードは次のとおりです
<?php header("Content-type: text/html; charset=utf-8"); function multiple_replace_words($word,$replace,$string,$tmp_match='#a_a#'){ preg_match_all('/'.$word.'/',$string,$matches); //匹配所有关键词 $search = explode(',','/'.implode('/,/',$matches[0]).'/'); //不存在匹配关键词 if(empty($matches[0])) return false; //特殊替换设置 $count = count($matches[0]); foreach($replace as $key=>$val){ if(!isset($matches[0][$key])) unset($replace[$key]); //剔除越界替换 } //合并特殊替换数组与匹配数组 for($i=0;$i<$count;$i++){ $matches[0][$i] = isset($replace[$i])? $replace[$i] : $matches[0][$i]; } $replace = $matches[0]; //防止替换循环,也就是替换字符仍是被替换字符,此时将其临时替换一个特定字符$tmp_match $replace = implode(',',$replace); $replace = str_replace($word,$tmp_match,$replace); //临时替换匹配字符 $replace = explode(',',$replace); //替换处理 $string = preg_replace($search,$replace,$string,1); //每次只替换数组中的一个 $string = str_replace($tmp_match,$word,$string); //还原临时替换的匹配字符 return $string; } //示例1 $string = 'aaabaaacaaadaaa'; $word = 'aaa'; $replace = array(null,'xxx','yyy'); echo '原文:'.$string.'<br/>输出:'.multiple_replace_words($word,$replace,$string).'<br/><br/>'; //示例2 $string = '中文aaab中文ccaaad中文eee'; $word = '中文'; $replace = array(null,'(替换中文2)','(替换中文3)'); echo '原文:'.$string.'<br/>输出:'.multiple_replace_words($word,$replace,$string); /* 输出结果: 原文:aaabaaacaaadaaa 输出:aaabxxxcyyydaaa 原文:中文aaab中文ccaaad中文eee 输出:中文aaab(替换中文2)ccaaad(替换中文3)eee //*/。
以上がPHP 配列の 1 対 1 置換の実装コードでは、2 つの位置間の文字が * 記号で置換されることが指定されていますの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。