3v4l.org

run code in 500+ PHP versions simultaneously
<?php class Valid_Magic_Methods { public function __set( $name, $value ) {} public function __get( $name ) {} public function __isset( $name ) {} public function __unset( $name ) {} public function __call($name, $arguments) {} public static function __callStatic($name, $args) {} public static function __set_state( $properties ) {} } class Invalid_Magic_Methods { public function __set() {} public function __get() {} public function __isset() {} public function __unset() {} public function __call() {} public static function __callStatic($name) {} public static function __set_state() {} }
Output for git.master_jit, git.master
Fatal error: Method Invalid_Magic_Methods::__set() must take exactly 2 arguments in /in/g55Or on line 17 Stack trace: #0 {main}
Process exited with code 255.

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
54.52 ms | 1850 KiB | 3 Q