3v4l.org

run code in 300+ PHP versions simultaneously
<?php class App { function run() { // Prerequisites. class system_tags { function __call($name, $params) { return 'TAG ' . $name; } } $system_tags = new system_tags(); $code = new \stdClass(); $code->tags = [ 'hello' => 'HELLO', 'world' => 'WORLD', ]; $this->template = 'Blah blah {hello} blah blah {world}.'; $this->withStrReplace($code, $system_tags); $this->template = 'Blah blah {hello} blah blah {world}.'; $this->withRegexReplaceCallback($code, $system_tags); } function withStrReplace($code, $system_tags) { foreach($core->tags as $tag_name => $tag_method) { $this->template = str_replace( '{' . $tag_name . '}', $system_tags->{$tag_method}(), $this->template ); } } function withRegexReplaceCallback($code, $system_tags) { $callback = static function ($matches) use (& $tag_method, $system_tags) { return $system_tags->{$tag_method}(); }; foreach($core->tags as $tag_name => $tag_method) { $this->template = preg_replace_callback( '/\{' . preg_quote($tag_name) . '\}/', $callback, $this->template ); } echo $this->template . "\n<br>"; } }
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.40, 5.5.24, 5.6.7 - 5.6.8
Fatal error: Class declarations may not be nested in /in/WRDOZ on line 7
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Fatal error: Class declarations may not be nested in /in/WRDOZ on line 7

preferences:
216.52 ms | 1386 KiB | 133 Q