ru_php/Zend/tests/magic_methods/magic_methods_003.phpt

15 lines
225 B
Plaintext
Raw Permalink Normal View History

--TEST--
Testing __unset declaring as static
--FILE--
<?php
class foo {
static function __unset($a) {
print "unset\n";
}
}
?>
--EXPECTF--
Fatal error: Method foo::__unset() cannot be static in %s on line %d