我在__isset中的实际代码中出现错误,但是当我去'运行php在线网站'时它可以工作。所以我不确定为什么它在我的代码中不起作用。
<?
class Test {
private $args;
public function __construct($args = array()) {
$this->args = $args;
}
public function __isset($name) {
return $this->args[$name]; //undefined index on my server (is fine on php site)
}
function prnt() {
// echo isset($this->i) ? "set" : "notset"; --> works, both print 'set'
echo isset($this->h) ? "set" : "notset";
}
}
?>
然后执行此操作:
$test = new Test(array('i' => '1234'));
$test->prnt();
//result on php website: notset
//result on my website: Undefined index at the line shown above.
可能有用的信息:
我的服务器正在运行php 5.1
isset($this->var)
发生在我实际代码中的include
文件中
只要变量存在(如上面的i
),它显然有效。
答案 0 :(得分:3)
您尝试返回不存在的密钥的值,而是使用array_key_exists
public function __isset($name) {
return array_key_exists($name, $this->args);
}
答案 1 :(得分:3)
每个环境中的错误报告设置都不同。一个环境允许E_NOTICE
级别的错误通过而另一个环境阻止它们。
你应该这样做:
return array_key_exists($name, $this->args);