magic_methods_003.phpt 225 B

1234567891011121314
  1. --TEST--
  2. Testing __unset declaring as static
  3. --FILE--
  4. <?php
  5. class foo {
  6. static function __unset($a) {
  7. print "unset\n";
  8. }
  9. }
  10. ?>
  11. --EXPECTF--
  12. Fatal error: Method foo::__unset() cannot be static in %s on line %d