blob: c5d2d6b36b3ee45df2279f4a3dae4d9fa5814fcf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--TEST--
Testing __unset with private visibility
--FILE--
<?php
class foo {
private function __unset($a) {
print "unset\n";
}
}
?>
--EXPECTF--
Fatal error: The magic method __unset() must have public visibility and cannot be static in %s on line %d
|