Last active
December 16, 2019 10:40
-
-
Save MarioBlazek/8e506b734f308342bf260fd71ca1515e to your computer and use it in GitHub Desktop.
T_PAAMAYIM_NEKUDOTAYIM
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class foo | |
{ | |
static $bar = 'baz'; | |
} | |
var_dump('foo'::$bar); | |
// Output PHP < 7.0: | |
// PHP Parse error: syntax error, unexpected '::' (T_PAAMAYIM_NEKUDOTAYIM) in php shell code on line 1 | |
// Output PHP > 7.0: | |
// string(3) "baz" | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment