0

我有这个代码:

$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?

4

1 回答 1

2

更改$new_news为数组,而不是字符串。

$new_news = array(
  'img'   => $path, 
  'title' => $_POST["title"],
  'text'  => $_POST["text"]
);

$news[] = $new_news;
于 2012-08-22T10:49:24.830 回答