Guest User

Untitled

a guest
Jul 21st, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <?php
  2. define('CONST_VALUE', 'value');
  3.  
  4. // works fine
  5. class FirstClass
  6. {
  7. public static $field = CONST_VALUE;
  8. }
  9.  
  10. FirstClass::$field;
  11.  
  12. // parse error
  13. class SecondClass
  14. {
  15. public static $field = CONST_VALUE.' and value';
  16. }
  17.  
  18. SecondClass::$field;
  19. ?>
Add Comment
Please, Sign In to add comment