3v4l.org

run code in 300+ PHP versions simultaneously
<?php Class User extends Model { } class Model { public static function get() { // $records grabbed from db as associative array // key is id, value is StdClass instance $records = array( (object)array('name' => 'vic'), (object)array('name' => 'bob'), ); $ret = array(); foreach($records as $id=>$record) { print $record->name; // <--- FIRST PRINT LINE $class = get_called_class(); $new = new $class; $new->name = $record->name; $ret[] = $new; } return $ret; } } print "\n"; $users = User::get(); foreach($users as $id=>$user) { print $user->name; // <--- SECOND PRINT LINE }
Output for git.master, git.master_jit, rfc.property-hooks
vic Deprecated: Creation of dynamic property User::$name is deprecated in /in/WK9GV on line 19 bob Deprecated: Creation of dynamic property User::$name is deprecated in /in/WK9GV on line 19 vicbob

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:
44.03 ms | 401 KiB | 8 Q