| Current Path : /hdd/hdd21/main/php5/php-5.6.6/Zend/tests/ |
| Current File : //hdd/hdd21/main/php5/php-5.6.6/Zend/tests/debug_info-error-true.phpt |
--TEST--
Testing __debugInfo() magic method with bad returns TRUE
--FILE--
<?php
class C {
public $val;
public function __debugInfo() {
return $this->val;
}
public function __construct($val) {
$this->val = $val;
}
}
$c = new C(true);
var_dump($c);
--EXPECTF--
Fatal error: __debuginfo() must return an array in %s%eZend%etests%edebug_info-error-true.php on line %d