异常代码

Deprecated: Assigning the return value of new by reference is deprecated

实际代码

$filter = &new stdclass;

解决方案

修改为 $filter = new stdclass;