科普一下:往Session内存json数据
先准备好Json数据,转换成数组就可以添加进去了
Session::put(json_decode('{"a":1,"b":2,"c":3,"d":4,"e":5}',JSON_FORCE_OBJECT))
虽然这样有点多此一举的感觉,但有这个方法总比没有的好吧……
先准备好Json数据,转换成数组就可以添加进去了
Session::put(json_decode('{"a":1,"b":2,"c":3,"d":4,"e":5}',JSON_FORCE_OBJECT))
虽然这样有点多此一举的感觉,但有这个方法总比没有的好吧……
2017-11-09
dd( isset($student->sex) ); 在你的框架打印就不报错 在自己框架打印就报 LogicException in Model.php line 2723:
Relationship method must return an object of type Illuminate\Database\Eloquent\Relations\Relation
Relationship method must return an object of type Illuminate\Database\Eloquent\Relations\Relation
2017-11-08
最新回答 / weibo_啊哈小明_0
我刚发现了个问题,如果时间那一列按老师的那样{{date('Y-m-d',$student->created_at)}}打就报这个错误,但如果我只是打{{$student->created_at}}就正常显示了
2017-11-06
ReflectionException in Container.php line 737: Class web does not exist
2017-11-03
public function handle($request, Closure $next)
{
//请求
$response = $next($request);
//逻辑
echo '逻辑单元';
return $response;
}
//最后需要有return,逻辑操作在 [return]前 && [请求]后.
{
//请求
$response = $next($request);
//逻辑
echo '逻辑单元';
return $response;
}
//最后需要有return,逻辑操作在 [return]前 && [请求]后.
2017-11-02
@gravility 这是习惯问题,因为这样写的话,在写别名(或者其他)的时候,直接在里面加,不会忘,也不会错了。
2017-11-02
在程序头写入以下语句:
use Illuminate\Support\Facades\Session;
use Illuminate\Support\Facades\Session;
2017-11-01
FatalErrorException in Container.php line 1074:
Maximum function nesting level of '100' reached, aborting!
in Container.php line 1074
求大神帮我看下这是什么错误
Maximum function nesting level of '100' reached, aborting!
in Container.php line 1074
求大神帮我看下这是什么错误
2017-10-24