3v4l.org

run code in 300+ PHP versions simultaneously
<?php class AnotherClass{ public $world = "world"; } $anotherClass = new AnotherClass(); class TestClass{ function __construct(){ ob_start(array($this,"callback")); } function callback($input){ global $anotherClass; return $input.$anotherClass->world; } } $tClass = new TestClass(); echo "hello"; ob_flush();

preferences:
38.9 ms | 402 KiB | 5 Q