3v4l.org

run code in 300+ PHP versions simultaneously
<?php $hotels = [ ['Cala', 3, 8.7, 6000], ['Ocean', 3, 8.2, 6150], ['Orchid', 3, 8.0, 7200], ['Ya', 3, 8.7, 6950], ['Chaba', 3, 8.2, 7120], ]; $totalHotelsNumber = 2; $starCoef = 0.2; $ratingCoef = 2000; for ( $i=0; $i<count($hotels); $i++ ) { $hotels[4] = 0; } for ( $i=0; $i<count($hotels); $i++ ) { for ( $j=$i+1; $j<count($hotels); $j++ ) { echo $j; echo 'Comparing '.$hotels[$i][0].' and '.$hotels[$j][0].'...'."\r\n"; $starDifference = $hotels[$i][1]-$hotels[$j][1]; $ratingToCompensate = $starDifference*$starCoef; $rating = $hotels[$i][2]+$ratingToCompensate; $ratingDifference = $rating-$hotels[$j][2]; $priceToCompensate = $ratingDifference*$ratingCoef; $price = $hotels[$i][3]-$priceToCompensate; echo $price.' VS '.$hotels[$j][3]."\r\n"; if ( $price > $hotels[$j][3] ) { echo $hotels[$i][0].' wins!'."\r\n"; $hotels[$i][4]++; } else { echo $hotels[$j][0].' wins!'."\r\n"; $hotels[$j][4]++; } echo "\r\n".'----------'."\r\n"; } } usort($hotels, function($hotelA, $hotelB){ return $hotelB[4]-$hotelA[4]; }); echo "\r\n".'----------'."\r\n"; echo 'Top:'."\r\n\r\n"; for ( $i=0; $i<count($hotels); $i++ ) { echo $hotels[$i][0].': '.$hotels[$i][4]."\r\n"; } echo "\r\n".'----------'."\r\n"; echo 'Finalists:'."\r\n\r\n"; for ( $i=0; $i<=1; $i++ ) { echo $hotels[$i][0]."\r\n"; }
Output for 8.3.0 - 8.3.6
1Comparing Cala and Ocean... 5000 VS 6150 Ocean wins! Warning: Undefined array key 4 in /in/2rS3C on line 39 ---------- 2Comparing Cala and Orchid... 4600 VS 7200 Orchid wins! Warning: Undefined array key 4 in /in/2rS3C on line 39 ---------- 3Comparing Cala and Ya... 6000 VS 6950 Ya wins! Warning: Undefined array key 4 in /in/2rS3C on line 39 ---------- 4 Warning: Trying to access array offset on int in /in/2rS3C on line 23 Comparing Cala and ... Warning: Trying to access array offset on int in /in/2rS3C on line 25 Warning: Trying to access array offset on int in /in/2rS3C on line 29 Warning: Trying to access array offset on int in /in/2rS3C on line 33 -12600 VS Warning: Trying to access array offset on int in /in/2rS3C on line 34 Cala wins! Warning: Undefined array key 4 in /in/2rS3C on line 36 ---------- 2Comparing Ocean and Orchid... 5750 VS 7200 Orchid wins! ---------- 3Comparing Ocean and Ya... 7150 VS 6950 Ocean wins! ---------- 4 Warning: Trying to access array offset on int in /in/2rS3C on line 23 Comparing Ocean and ... Warning: Trying to access array offset on int in /in/2rS3C on line 25 Warning: Trying to access array offset on int in /in/2rS3C on line 29 Warning: Trying to access array offset on int in /in/2rS3C on line 33 -11450 VS Warning: Trying to access array offset on int in /in/2rS3C on line 34 Ocean wins! ---------- 3Comparing Orchid and Ya... 8600 VS 6950 Orchid wins! ---------- 4 Warning: Trying to access array offset on int in /in/2rS3C on line 23 Comparing Orchid and ... Warning: Trying to access array offset on int in /in/2rS3C on line 25 Warning: Trying to access array offset on int in /in/2rS3C on line 29 Warning: Trying to access array offset on int in /in/2rS3C on line 33 -10000 VS Warning: Trying to access array offset on int in /in/2rS3C on line 34 Orchid wins! ---------- 4 Warning: Trying to access array offset on int in /in/2rS3C on line 23 Comparing Ya and ... Warning: Trying to access array offset on int in /in/2rS3C on line 25 Warning: Trying to access array offset on int in /in/2rS3C on line 29 Warning: Trying to access array offset on int in /in/2rS3C on line 33 -11650 VS Warning: Trying to access array offset on int in /in/2rS3C on line 34 Ya wins! ---------- Warning: Trying to access array offset on int in /in/2rS3C on line 47 ---------- Top: Orchid: 4 Ocean: 3 Ya: 2 Cala: 1 Warning: Trying to access array offset on int in /in/2rS3C on line 54 Warning: Trying to access array offset on int in /in/2rS3C on line 54 : ---------- Finalists: Orchid Ocean
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18
1Comparing Cala and Ocean... 5000 VS 6150 Ocean wins! Warning: Undefined array key 4 in /in/2rS3C on line 39 ---------- 2Comparing Cala and Orchid... 4600 VS 7200 Orchid wins! Warning: Undefined array key 4 in /in/2rS3C on line 39 ---------- 3Comparing Cala and Ya... 6000 VS 6950 Ya wins! Warning: Undefined array key 4 in /in/2rS3C on line 39 ---------- 4 Warning: Trying to access array offset on value of type int in /in/2rS3C on line 23 Comparing Cala and ... Warning: Trying to access array offset on value of type int in /in/2rS3C on line 25 Warning: Trying to access array offset on value of type int in /in/2rS3C on line 29 Warning: Trying to access array offset on value of type int in /in/2rS3C on line 33 -12600 VS Warning: Trying to access array offset on value of type int in /in/2rS3C on line 34 Cala wins! Warning: Undefined array key 4 in /in/2rS3C on line 36 ---------- 2Comparing Ocean and Orchid... 5750 VS 7200 Orchid wins! ---------- 3Comparing Ocean and Ya... 7150 VS 6950 Ocean wins! ---------- 4 Warning: Trying to access array offset on value of type int in /in/2rS3C on line 23 Comparing Ocean and ... Warning: Trying to access array offset on value of type int in /in/2rS3C on line 25 Warning: Trying to access array offset on value of type int in /in/2rS3C on line 29 Warning: Trying to access array offset on value of type int in /in/2rS3C on line 33 -11450 VS Warning: Trying to access array offset on value of type int in /in/2rS3C on line 34 Ocean wins! ---------- 3Comparing Orchid and Ya... 8600 VS 6950 Orchid wins! ---------- 4 Warning: Trying to access array offset on value of type int in /in/2rS3C on line 23 Comparing Orchid and ... Warning: Trying to access array offset on value of type int in /in/2rS3C on line 25 Warning: Trying to access array offset on value of type int in /in/2rS3C on line 29 Warning: Trying to access array offset on value of type int in /in/2rS3C on line 33 -10000 VS Warning: Trying to access array offset on value of type int in /in/2rS3C on line 34 Orchid wins! ---------- 4 Warning: Trying to access array offset on value of type int in /in/2rS3C on line 23 Comparing Ya and ... Warning: Trying to access array offset on value of type int in /in/2rS3C on line 25 Warning: Trying to access array offset on value of type int in /in/2rS3C on line 29 Warning: Trying to access array offset on value of type int in /in/2rS3C on line 33 -11650 VS Warning: Trying to access array offset on value of type int in /in/2rS3C on line 34 Ya wins! ---------- Warning: Trying to access array offset on value of type int in /in/2rS3C on line 47 ---------- Top: Orchid: 4 Ocean: 3 Ya: 2 Cala: 1 Warning: Trying to access array offset on value of type int in /in/2rS3C on line 54 Warning: Trying to access array offset on value of type int in /in/2rS3C on line 54 : ---------- Finalists: Orchid Ocean
Output for 7.4.0 - 7.4.25, 7.4.27 - 7.4.33
1Comparing Cala and Ocean... 5000 VS 6150 Ocean wins! Notice: Undefined offset: 4 in /in/2rS3C on line 39 ---------- 2Comparing Cala and Orchid... 4600 VS 7200 Orchid wins! Notice: Undefined offset: 4 in /in/2rS3C on line 39 ---------- 3Comparing Cala and Ya... 6000 VS 6950 Ya wins! Notice: Undefined offset: 4 in /in/2rS3C on line 39 ---------- 4 Notice: Trying to access array offset on value of type int in /in/2rS3C on line 23 Comparing Cala and ... Notice: Trying to access array offset on value of type int in /in/2rS3C on line 25 Notice: Trying to access array offset on value of type int in /in/2rS3C on line 29 Notice: Trying to access array offset on value of type int in /in/2rS3C on line 33 -12600 VS Notice: Trying to access array offset on value of type int in /in/2rS3C on line 34 Cala wins! Notice: Undefined offset: 4 in /in/2rS3C on line 36 ---------- 2Comparing Ocean and Orchid... 5750 VS 7200 Orchid wins! ---------- 3Comparing Ocean and Ya... 7150 VS 6950 Ocean wins! ---------- 4 Notice: Trying to access array offset on value of type int in /in/2rS3C on line 23 Comparing Ocean and ... Notice: Trying to access array offset on value of type int in /in/2rS3C on line 25 Notice: Trying to access array offset on value of type int in /in/2rS3C on line 29 Notice: Trying to access array offset on value of type int in /in/2rS3C on line 33 -11450 VS Notice: Trying to access array offset on value of type int in /in/2rS3C on line 34 Ocean wins! ---------- 3Comparing Orchid and Ya... 8600 VS 6950 Orchid wins! ---------- 4 Notice: Trying to access array offset on value of type int in /in/2rS3C on line 23 Comparing Orchid and ... Notice: Trying to access array offset on value of type int in /in/2rS3C on line 25 Notice: Trying to access array offset on value of type int in /in/2rS3C on line 29 Notice: Trying to access array offset on value of type int in /in/2rS3C on line 33 -10000 VS Notice: Trying to access array offset on value of type int in /in/2rS3C on line 34 Orchid wins! ---------- 4 Notice: Trying to access array offset on value of type int in /in/2rS3C on line 23 Comparing Ya and ... Notice: Trying to access array offset on value of type int in /in/2rS3C on line 25 Notice: Trying to access array offset on value of type int in /in/2rS3C on line 29 Notice: Trying to access array offset on value of type int in /in/2rS3C on line 33 -11650 VS Notice: Trying to access array offset on value of type int in /in/2rS3C on line 34 Ya wins! ---------- Notice: Trying to access array offset on value of type int in /in/2rS3C on line 47 ---------- Top: Orchid: 4 Ocean: 3 Ya: 2 Cala: 1 Notice: Trying to access array offset on value of type int in /in/2rS3C on line 54 Notice: Trying to access array offset on value of type int in /in/2rS3C on line 54 : ---------- Finalists: Orchid Ocean
Output for 7.3.32 - 7.3.33, 7.4.26
1Comparing Cala and Ocean... 5000 VS 6150 Ocean wins! ---------- 2Comparing Cala and Orchid... 4600 VS 7200 Orchid wins! ---------- 3Comparing Cala and Ya... 6000 VS 6950 Ya wins! ---------- 4Comparing Cala and ... -12600 VS Cala wins! ---------- 2Comparing Ocean and Orchid... 5750 VS 7200 Orchid wins! ---------- 3Comparing Ocean and Ya... 7150 VS 6950 Ocean wins! ---------- 4Comparing Ocean and ... -11450 VS Ocean wins! ---------- 3Comparing Orchid and Ya... 8600 VS 6950 Orchid wins! ---------- 4Comparing Orchid and ... -10000 VS Orchid wins! ---------- 4Comparing Ya and ... -11650 VS Ya wins! ---------- ---------- Top: Orchid: 4 Ocean: 3 Ya: 2 Cala: 1 : ---------- Finalists: Orchid Ocean
Output for 5.4.0 - 5.4.45, 5.5.24 - 5.5.35, 5.6.8 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.31
1Comparing Cala and Ocean... 5000 VS 6150 Ocean wins! Notice: Undefined offset: 4 in /in/2rS3C on line 39 ---------- 2Comparing Cala and Orchid... 4600 VS 7200 Orchid wins! Notice: Undefined offset: 4 in /in/2rS3C on line 39 ---------- 3Comparing Cala and Ya... 6000 VS 6950 Ya wins! Notice: Undefined offset: 4 in /in/2rS3C on line 39 ---------- 4Comparing Cala and ... -12600 VS Cala wins! Notice: Undefined offset: 4 in /in/2rS3C on line 36 ---------- 2Comparing Ocean and Orchid... 5750 VS 7200 Orchid wins! ---------- 3Comparing Ocean and Ya... 7150 VS 6950 Ocean wins! ---------- 4Comparing Ocean and ... -11450 VS Ocean wins! ---------- 3Comparing Orchid and Ya... 8600 VS 6950 Orchid wins! ---------- 4Comparing Orchid and ... -10000 VS Orchid wins! ---------- 4Comparing Ya and ... -11650 VS Ya wins! ---------- ---------- Top: Orchid: 4 Ocean: 3 Ya: 2 Cala: 1 : ---------- Finalists: Orchid Ocean
Output for 4.4.2 - 4.4.9, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29
Parse error: syntax error, unexpected '[' in /in/2rS3C on line 3
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1, 5.0.0 - 5.0.5
Parse error: parse error, unexpected '[' in /in/2rS3C on line 3
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error in /in/2rS3C on line 3
Process exited with code 255.

preferences:
254.06 ms | 401 KiB | 341 Q