我正在尝试实现自定义的 Acl Assert。
if($acl->isAllowed($role,$resource,$privilege.':all')) {
return true;
}
工作正常。但
if(($acl->isAllowed($role,$resource,$privilege.':all'))
|| ($acl->isAllowed($role,$resource,$privilege))) {
return true;
}
抛出一个
致命错误:第 837 行 ........\library\Zend\Acl.php 中允许的内存大小为 134217728 字节已用尽(试图分配 261904 字节)