2017-04-19 61 views
-1

我用下面的語句在命令提示符中使用php artisan修補程序在表'歌曲'中輸入數據,但它顯示PHP Parse error: Syntax error, unexpected T_OBJECT_OPERATOR, expecting ']' on line 1PHP解析錯誤:語法錯誤,意外的T_OBJECT_OPERATOR,期待']'第1行

DB::table('songs')->insert(['title'->'Closer','artist'->'chainsmokers','created_at'->new DateTime,'updated_at'->new DateTime ]); 
+0

內的東西的'插入()'是一個[陣列(http://php.net/manual/en/language.types.array .php#如果language.types.array.syntax.array-FUNC)。 –

回答

2

使用=>代替->

DB::table('songs')->insert([ 
    'title' => 'Closer', 
    'artist' => 'chainsmokers', 
    'created_at' => new DateTime, 
    'updated_at' => new DateTime, 
]); 
相關問題