php-8.0.30-src/Zend/tests/magic_methods_003.phpt

15 lines
225 B
PHP

--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