Parse error: syntax error, unexpected T_CLASS, expecting T_STRING or T_VARIABLE or '$' in E:\ZendProject\LaravelPhp\laravel\public\index.php on line 50
原因: php版本低于5.5,需要升级咯
原因: php版本低于5.5,需要升级咯
2017-04-01
5.4 chunk 必须要使用orderBy()
echo "<pre>";
DB::table('student')->orderBy('id','desc')->chunk(1,function($students){
var_dump($students);
});
echo "<pre>";
DB::table('student')->orderBy('id','desc')->chunk(1,function($students){
var_dump($students);
});
2017-03-31