Skip to content

Instantly share code, notes, and snippets.

@jordanorelli
Created June 6, 2013 19:25
Show Gist options
  • Save jordanorelli/5724186 to your computer and use it in GitHub Desktop.
Save jordanorelli/5724186 to your computer and use it in GitHub Desktop.
siiiggghhhhhhh
<?php
class Foo {
const a = 1;
const b = 4;
const c = 1 | 4;
}
echo "a: " . Foo::a . "\n";
echo "b: " . Foo::b . "\n";
echo "c: " . Foo::c . "\n";
@jordanorelli
Copy link
Author

output:

Parse error: syntax error, unexpected '|', expecting ',' or ';' in ....php on line 6

...figures.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment