magic_methods_004.phpt 253 B

1234567891011121314
  1. --TEST--
  2. Testing __unset() with protected visibility
  3. --FILE--
  4. <?php
  5. class foo {
  6. protected function __unset($a) {
  7. print "unset\n";
  8. }
  9. }
  10. ?>
  11. --EXPECTF--
  12. Warning: The magic method foo::__unset() must have public visibility in %s on line %d