我有这个代码:
$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() 添加长度为 4 的 $new_news?