この ARRAY
の何が問題なのかを教えてください。
関数 replace_text_wps($text){
$replace = array(
// 'キーワード' => '置換されたキーワード'
'wordpress' => 'wordpress');
$tmpfilename='1.txt';//形式は prom|http://www.baidu.com
です
$str = file_get_contents($tmpfilename);//コンテンツを取得
$arr =explode("n",$str);//配列
に分岐
foreach($arr as $row){//各行を走査します
$keys=explode("|",$row);
$replace[$keys[0]]=$keys[1] //なぜここに追加されなかったのですか
;
}
$replace['抜粋'] = 'クール';
$text = str_replace(array_keys($replace), $replace, $text);
$text を返す;
}
echo replace_text_wps('プロムドレスのWordPress抜粋');
?>