-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/tests/classes/
File Upload :
Current File : //usr/src/php/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

Copyright © 2017 || Recoded By Mr.Bumblebee