He110te4m / Blog

自主开发的博客系统,使用 Despote 框架驱动,演示地址:

Home Page:https://blog.he110.info

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

运算符的使用有优先级问题

suyar opened this issue · comments

commented

app/Home/model/Common.php 文件第 38 行:

is_null($data) && $flag = false;

应当写成is_null($data) && ($flag = false);或者is_null($data) and $flag = false;

已修复类似语法错误