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 print $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 Warning: Undefined variable $class in /in/VOTso on line 19 Warning: Undefined variable $class in /in/VOTso on line 20 Fatal error: Uncaught Error: Class name must be a valid object or a string in /in/VOTso:20 Stack trace: #0 /in/VOTso(30): Model::get() #1 {main} thrown in /in/VOTso on line 20
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:
40.64 ms | 401 KiB | 8 Q