1
PHPで配列のキーの値を置き換えるソートルーチンを、別の配列のキー値と置き換える方法は、前の配列のキー値の順序が間違っている。私は$array2
でcorrospondingコンテンツを$array1
の値を置き換えることができますどのようにPHP配列の値を別の配列の値で置き換えます
$array1 = ['section2', 'section3', 'section1'];
$array2 = ['content for section1', 'content for section2', 'content section3'];
?
は、だから私は....私が求めていることは、私は....以下の順で
content for section2
content for section3
content for section1
$array1
ディスプレイを作ることができる方法です
チェックこのマニュアルhttp://www.w3schools.com/php/func_string_str_replace.asp http://php.net /manual/en/function.str-replace.php –
2つの配列の間にはどんな関係がありますか? section2の内容はサンプル値であるか、常に単語 'section2'で終わりますか? –
2つの配列順序の間に関係がない場合、問題は解決されません。 –