3v4l.org

run code in 300+ PHP versions simultaneously
<?php namespace miSuperEspacioDeNombres; class nombreclase { function __construct() { echo __METHOD__,"\n"; } } function nombrefunc() { echo __FUNCTION__,"\n"; } const nombreconst = "global"; /* $a = 'nombreclase'; $obj = new $a; // imprime nombreclase::__construct $b = 'nombrefunc'; $b(); // imprime nombrefunc echo constant('nombreconst'), "\n"; // imprime global */ $aa = new nombreclase; nombrefunc(); echo '"' . __NAMESPACE__ . '"'; echo namespace; ?>
Output for 5.4.0 - 5.4.23
Parse error: syntax error, unexpected ';', expecting \\ (T_NS_SEPARATOR) in /in/BdQUX on line 28
Process exited with code 255.
Output for 5.3.0 - 5.3.28
Parse error: syntax error, unexpected ';', expecting T_NS_SEPARATOR in /in/BdQUX on line 28
Process exited with code 255.

preferences:
171.09 ms | 1399 KiB | 60 Q