You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
238 B

--TEST--
errmsg: disabled class
--INI--
disable_classes=stdclass
--FILE--
<?php
class test extends stdclass {
}
$t = new test;
echo "Done\n";
?>
--EXPECTF--
Warning: test() has been disabled for security reasons in %s on line %d
Done