3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Move { var $direction; var $value; var $x; var $y; public static function initializeEmpty(){ return (new Move(array(0, 0), "NONE", -2)); } public function __construct($pos, $direction, $value){ $this->y = $pos[0]; $this->x = $pos[1]; $this->value = $value; $this->direction = $direction; } public function compare($move){ return $move->value > $this->value ? $move->value : $this->value; } public static function maxValDirection($moves){ $best = Move::initializeEmpty(); print_r($best); print_r($moves); foreach($moves as $m){ print_r($move); $best = $move->compare($best); } return $best; } } $m1 = Move::initializeEmpty(); $m2 = new Move(array(0, 1), "RIGHT", 10); print_r(Move::maxValDirection(array($m1, $m2))); ?>
Output for git.master, git.master_jit, rfc.property-hooks
Move Object ( [direction] => NONE [value] => -2 [x] => 0 [y] => 0 ) Array ( [0] => Move Object ( [direction] => NONE [value] => -2 [x] => 0 [y] => 0 ) [1] => Move Object ( [direction] => RIGHT [value] => 10 [x] => 1 [y] => 0 ) ) Warning: Undefined variable $move in /in/qrUcQ on line 28 Warning: Undefined variable $move in /in/qrUcQ on line 29 Fatal error: Uncaught Error: Call to a member function compare() on null in /in/qrUcQ:29 Stack trace: #0 /in/qrUcQ(36): Move::maxValDirection(Array) #1 {main} thrown in /in/qrUcQ on line 29
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:
57.81 ms | 402 KiB | 8 Q