标签: php performance out-of-memory
我有这行代码似乎在PHP上给了我Out of Memory错误。
//Gives OOM when $list[0] is undeclared if(isset($list[0]) == false) { $message = 'Variable is not set. Unable to validate variable'; }
我是否知道是否有办法检查变量是否未声明,为什么isset会给我一个Out of Memory错误?