Your IP : 216.73.216.48


Current Path : /hdd/hdd12/install/php/php-7.4.32/tests/classes/
Upload File :
Current File : //hdd/hdd12/install/php/php-7.4.32/tests/classes/constants_error_006.phpt

--TEST--
Basic class support - attempting to modify a class constant by assignment
--FILE--
<?php
  class aclass
  {
      const myConst = "hello";
  }

  echo "\nTrying to modify a class constant directly - should be parse error.\n";
  aclass::myConst = "no!!";
  var_dump(aclass::myConst);
?>
--EXPECTF--
Parse error: %s in %s on line %d