3v4l.org

run code in 300+ PHP versions simultaneously
<?php class MyTest { public function __construct() { $array = array( 1, 2, 3 ); $r = array_map( array($this,'getHoge'), $array ); var_dump($r); } public static function getHoge($item){ $item ++; } } new MyTest();

preferences:
38.22 ms | 402 KiB | 5 Q