Skip to content

Instantly share code, notes, and snippets.

@MarioBlazek
Last active December 16, 2019 10:40
Show Gist options
  • Save MarioBlazek/8e506b734f308342bf260fd71ca1515e to your computer and use it in GitHub Desktop.
Save MarioBlazek/8e506b734f308342bf260fd71ca1515e to your computer and use it in GitHub Desktop.
T_PAAMAYIM_NEKUDOTAYIM
<?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