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__ . '"' . PHP_EOL; namespace\nombrefunc(); __NAMESPACE__\nombrefunc(); ?>
Output for 8.1.23 - 8.1.28, 8.2.10 - 8.2.18, 8.3.0 - 8.3.6
miSuperEspacioDeNombres\nombreclase::__construct miSuperEspacioDeNombres\nombrefunc "miSuperEspacioDeNombres" miSuperEspacioDeNombres\nombrefunc Fatal error: Uncaught Error: Call to undefined function miSuperEspacioDeNombres\__NAMESPACE__\nombrefunc() in /in/7id13:29 Stack trace: #0 {main} thrown in /in/7id13 on line 29
Process exited with code 255.
Output for 5.4.0 - 5.4.23
Parse error: syntax error, unexpected '\' (T_NS_SEPARATOR) in /in/7id13 on line 29
Process exited with code 255.
Output for 5.3.0 - 5.3.28
Parse error: syntax error, unexpected T_NS_SEPARATOR in /in/7id13 on line 29
Process exited with code 255.

preferences:
90.77 ms | 401 KiB | 80 Q