Skip to content

Instantly share code, notes, and snippets.

@mgng
Created June 5, 2012 09:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mgng/2873733 to your computer and use it in GitHub Desktop.
Save mgng/2873733 to your computer and use it in GitHub Desktop.
<?php
$o = json_decode( '{ "a" : 1, "//" : 2 }' );
echo $o->a; // 1
echo $o->//; // Parse error: syntax error, unexpected $end, expecting T_STRING or T_VARIABLE or '{' or '$'
echo $o->{'//'}; // 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment