<?php class X { public static function create() { $class = get_called_class(); return new $class; } public static function createStatic() { return new static; } } var_dump(X::create(), X::createStatic());
You have javascript disabled. You will not be able to edit any code.