3v4l.org

run code in 300+ PHP versions simultaneously
<?php // Everything you enter here will be executed by our servers. Try it! class Framework { const NAME = "Microd"; const SOURCE_VERSION = "0.1.0"; const DATABASE_VERSION = "0.1.0"; function __construct() { echo "Framework Start\n"; } function __destruct() { echo "Framework End\n"; } } class Test extend Framework { const NAME = "Microd"; const SOURCE_VERSION = "0.1.0"; const DATABASE_VERSION = "0.1.0"; function __construct() { echo "Test Start\n"; } function __destruct() { echo "Test End\n"; } } $framework = new Framework(); //echo \Microd\Framework::DATABASE_VERSION; $test = new Test();
Output for 5.4.0 - 5.4.17
Parse error: syntax error, unexpected 'extend' (T_STRING), expecting '{' in /in/tEBke on line 20
Process exited with code 255.
Output for 5.3.0 - 5.3.27
Parse error: syntax error, unexpected T_STRING, expecting '{' in /in/tEBke on line 20
Process exited with code 255.

preferences:
185.91 ms | 1399 KiB | 53 Q