我有这段代码:
$new_news = '; array(
\'img\' =>'.$path.',
\'title\' => '.$_POST["title"].',
\'text\' => '.$_POST["text"].'
)';
我需要将它添加到db.php中的现有数组中。例如:
$news = array(
array(
'img' => 'images/egle.jpg',
'title' => 'Egle pārtraukusi ',
'text' => 'Valsts prezidenta Andra '));
如何使用fopen()?
在length-4中添加$ new_news答案 0 :(得分:2)
将$new_news
更改为数组,而不是字符串。
$new_news = array(
'img' => $path,
'title' => $_POST["title"],
'text' => $_POST["text"]
);
$news[] = $new_news;