mirror of
https://github.com/php/php-src.git
synced 2024-11-25 10:54:15 +08:00
15 lines
252 B
PHP
15 lines
252 B
PHP
--TEST--
|
|
Testing __unset with private visibility
|
|
--FILE--
|
|
<?php
|
|
|
|
class foo {
|
|
private function __unset($a) {
|
|
print "unset\n";
|
|
}
|
|
}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Warning: The magic method __unset() must have public visibility and cannot be static in %s on line %d
|