こんにちはみんな私は2セットのデータを含むRSSフィードから来ているPHP配列を持っています。タイトルと説明。
(配列の印刷例、1つのインデックスだけでなく、配列内のすべての説明項目を編集したい)
[2] => ('Remembrance','Release Date: Thursday 19th April 2012')
mysqlテーブルに入る前に、説明文字列を操作して「リリース日:」を削除するにはどうすればよいですか?
これは私の他のコードです:
$rss = simplexml_load_file('rss.xml');
$title = $rss->xpath('//title'); //finding the title tags in the xml document and loading into variable
$description = $rss->xpath('//description');
$rows=array();
foreach($result as $title){
$rows[]="('".mysql_real_escape_string($title)."','".mysql_real_escape_string(array_shift($description))."')";
}
mysql_query("INSERT INTO Films (Film_Name, Film_Release) VALUES ".implode(',',$rows));
print_r($rows);