3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** * PHP Bug test report * * Verified on 5.4.17 and 5.5.7 versions */ class Alpha { public $message = "Valid representation"; public function bravo() { return $this->message; } } $alpha = new Alpha(); echo "alpha.bravo: ", $alpha->bravo().PHP_EOL; $reflection = new ReflectionObject($alpha); $method = $reflection->getMethod("bravo"); $closure = $method->getClosure($alpha); $reflectionC = new ReflectionFunction($closure); echo "reflection of alpha.bravo: ", $method->invoke($alpha).PHP_EOL; echo "closure of alpha.bravo: ", $closure().PHP_EOL; echo "call_user_func of closure: ", call_user_func($closure).PHP_EOL; echo PHP_EOL; echo "closure cl of c(alpha.bravo): ", get_class($reflectionC->getClosureThis()).PHP_EOL; echo "scope cl of c(alpha.bravo): ", $reflectionC->getClosureScopeClass()->getName().PHP_EOL; echo "reflection of c(alpha.bravo): ", $reflectionC->invoke().PHP_EOL;
Output for 7.2.17 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.4, 8.3.6 - 8.3.7
alpha.bravo: Valid representation reflection of alpha.bravo: Valid representation closure of alpha.bravo: Valid representation call_user_func of closure: Valid representation closure cl of c(alpha.bravo): Alpha scope cl of c(alpha.bravo): Alpha reflection of c(alpha.bravo): Valid representation
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 alpha.bravo: Valid representation reflection of alpha.bravo: Valid representation closure of alpha.bravo: Valid representation call_user_func of closure: Valid representation closure cl of c(alpha.bravo): Alpha scope cl of c(alpha.bravo): Alpha reflection of c(alpha.bravo): Valid representation
Output for 7.0.0 - 7.0.31, 7.1.0 - 7.1.33, 7.2.0 - 7.2.10
alpha.bravo: Valid representation reflection of alpha.bravo: Valid representation closure of alpha.bravo: Valid representation call_user_func of closure: Valid representation closure cl of c(alpha.bravo): Alpha scope cl of c(alpha.bravo): Alpha reflection of c(alpha.bravo): Fatal error: Uncaught Error: Using $this when not in object context in /in/rWFHv:15 Stack trace: #0 [internal function]: Alpha::bravo() #1 /in/rWFHv(37): ReflectionFunction->invoke() #2 {main} thrown in /in/rWFHv on line 15
Process exited with code 255.
Output for 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.38
alpha.bravo: Valid representation reflection of alpha.bravo: Valid representation closure of alpha.bravo: Valid representation call_user_func of closure: Valid representation closure cl of c(alpha.bravo): Alpha scope cl of c(alpha.bravo): Alpha reflection of c(alpha.bravo): Fatal error: Using $this when not in object context in /in/rWFHv on line 15
Process exited with code 255.
Output for 5.0.2 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29
alpha.bravo: Valid representation Fatal error: Call to undefined method ReflectionMethod::getClosure() in /in/rWFHv on line 27
Process exited with code 255.
Output for 5.0.0 - 5.0.1
alpha.bravo: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/rWFHv on line 22 Valid representationPHP_EOL Fatal error: Call to undefined method ReflectionMethod::getClosure() in /in/rWFHv on line 27
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/rWFHv on line 11
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1
Parse error: parse error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/rWFHv on line 11
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `T_OLD_FUNCTION' or `T_FUNCTION' or `T_VAR' or `'}'' in /in/rWFHv on line 11
Process exited with code 255.

preferences:
291.61 ms | 401 KiB | 442 Q