Поставил знак = и все равно ошибка на на строчке 4.
<?php
function articles_all() {
$art1 = ["id"=>1, "title"=>"Title1", "date"=>"12-10-2015", "content"=>"Content1"];
$art2 = ["id"=>2, "title"=>"Title2", "date"=>"13-10-2015", "content"=>"Content2"];
$arr[0] = $art1;
$arr[1] = $art2;
return $arr;
}
function articles_get($id) {
return ["id"=>1, "title"=>"Это простой заголовок", "date"=>"12-10-2015", "content"=>"Здесь будет статья"];
}
function articles_new($title, $date, $content) {
//Создание статьи
}
function articles_edit($id, $title, $date, $content) {
//Редактирование статьи
}
function articles_delete($id) {
//Удаление статьи
}
?>