3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Test { public $string = 'Test String'; public function foo() { echo 'foo' . PHP_EOL; } static function fooStatic() { echo 'static' . PHP_EOL; } } $a = new Test; $b = clone $a; $a->string = 'New Test String'; var_dump($b);

preferences:
29.47 ms | 402 KiB | 5 Q