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.
 
 
 
 
 
 

15 lines
322 B

--TEST--
Basic class support - attempting to create a reference to a class constant
--FILE--
<?php
class aclass
{
const myConst = "hello";
}
echo "\nAttempting to create a reference to a class constant - should be parse error.\n";
$a = &aclass::myConst;
?>
--EXPECTF--
Parse error: %s in %s on line %d