3v4l.org

run code in 300+ PHP versions simultaneously
<?php // int isn't a reserved word, right? // So this should work fine! const int = 7; // Let's try using it! echo (int)int int; /* Wait, what? A parse error? Why, you might ask? (int) is a special case in the lexer. Turns out that casts are lexed specially. Why? Probably to stop the type names being reserved words. That worked out spectacularly, didn't it. This has been around since at least PHP 3. */
Output for 5.4.0 - 5.4.30
Parse error: syntax error, unexpected 'int' (T_STRING), expecting ',' or ';' in /in/4Sbcp on line 8
Process exited with code 255.
Output for 5.3.0 - 5.3.28
Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in /in/4Sbcp on line 8
Process exited with code 255.

preferences:
182.92 ms | 1395 KiB | 67 Q