3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Point { public $X; public $Y; function __construct($X, $Y) { $this->X = $X; $this->Y = $Y; } } $moves = 4; $mouseX = 0; $mouseY = 0; $point = new Point(400, 400); //$startAngle = rand(0, 90); $startAngle = 30; echo 'Angle = '.$startAngle."\r\n"; $angles = array($startAngle); for ( $i=1; $i<$moves; $i++ ) { $angles[$i] = $angles[$i-1] + (90 - 2*$startAngle)/($moves-1); } $lineHeightDiv = 0; foreach ( $angles as $angle ) { $lineHeightDiv += sin($angle*pi()/180); } $lineHeight = ($point->Y-$mouseY)/$lineHeightDiv; echo 'LineHeight = '.$lineHeight."\r\n"; $lineWidthDiv = 0; foreach ( $angles as $angle ) { $lineWidthDiv += cos($angle*pi()/180); } $lineWidth = ($point->X-$mouseX)/$lineWidthDiv; echo 'LineWidth = '.$lineWidth."\r\n"; $points = array(new Point($mouseX, $mouseY)); for ( $i=1; $i<=$moves; $i++ ) { $x = $points[$i-1]->X + $lineWidth*cos($angles[$i]*pi()/180); $y = $points[$i-1]->Y + $lineHeight*sin($angles[$i]*pi()/180); $points[] = new Point($x, $y); } var_dump($points);
Output for git.master, git.master_jit, rfc.property-hooks
Angle = 30 LineHeight = 144.15154877597 LineWidth = 144.15154877597 Warning: Undefined array key 4 in /in/4Na6j on line 47 Warning: Undefined array key 4 in /in/4Na6j on line 48 array(5) { [0]=> object(Point)#2 (2) { ["X"]=> int(0) ["Y"]=> int(0) } [1]=> object(Point)#3 (2) { ["X"]=> float(110.42649290682859) ["Y"]=> float(92.65882947032038) } [2]=> object(Point)#4 (2) { ["X"]=> float(203.085322377149) ["Y"]=> float(203.08532237714897) } [3]=> object(Point)#5 (2) { ["X"]=> float(275.1610967651356) ["Y"]=> float(327.92422561201334) } [4]=> object(Point)#6 (2) { ["X"]=> float(419.3126455411088) ["Y"]=> float(327.92422561201334) } }

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:
39.54 ms | 402 KiB | 8 Q