FatalErrorException in Encrypter.php line 66:
Call to undefined function openssl_encrypt()
这个问题 ,修改了php.ini 为什么还不可以
Call to undefined function openssl_encrypt()
这个问题 ,修改了php.ini 为什么还不可以
2018-02-26
讲真 第一次接触laravel 感觉条框太多 必须设置路由 添加个字段必须model设置 好繁琐啊感觉
2018-02-21
关于save()报错的问题:
在数据表中:update_at 改成 updated_at和create_at 改成 created_at
把这两个字段的类型改成date类型就可以了。
在数据表中:update_at 改成 updated_at和create_at 改成 created_at
把这两个字段的类型改成date类型就可以了。
2018-02-06
SQLSTATE[01000]: Warning: 1265 Data truncated for column 'updated_at' at row 1 (SQL: insert into `student` (`name`, `age`, `updated_at`, `created_at`) values (dsadsa, 15, 2018-02-05 09:43:28, 2018-02-05 09:43:28))
2018-02-05
laravel 5.4 版本使用chunk 方法时报错 You must specify an orderBy clause when using this function.
需要加上 orderBy() 方法DB::table('student')->orderBy('id')->chunk(function(){ });
需要加上 orderBy() 方法DB::table('student')->orderBy('id')->chunk(function(){ });
2018-02-04