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', 4, 8.3, 6950], ['Chaba', 3, 8.2, 7120], ]; $top = [ 'Cala', 'Ocean', 'Ya', ]; for ( $i=0; $i<count($hotels); $i++ ) { $hotels[$i][4] = 0; } $starCoefOptions = range(0.1, 5, 0.1); $ratingCoefOptions = range(20, 10000, 20); $results = []; foreach ( $starCoefOptions as $starCoef ) { foreach ( $ratingCoefOptions as $ratingCoef ) { $topGenerated = buildTop($hotels, $starCoef, $ratingCoef); $topGenerated = array_slice($topGenerated, 0, count($top)); if ( $topGenerated === $top ) { $results[strval($starCoef)][] = $ratingCoef; } } } foreach ( $results as $starCoef=>$ratingCoefs ) { echo $starCoef.': '.min($ratingCoefs).' - '.max($ratingCoefs)."\r\n"; } function buildTop($hotels, $starCoef, $ratingCoef) { for ( $i=0; $i<count($hotels); $i++ ) { for ( $j=$i+1; $j<count($hotels); $j++ ) { $starDifference = $hotels[$i][1]-$hotels[$j][1]; $ratingToCompensate = $starDifference*$starCoef; $rating = $hotels[$i][2]+$ratingToCompensate; $ratingDifference = ($rating-$hotels[$j][2])*10; $priceToCompensate = $ratingDifference*$ratingCoef; $price = round($hotels[$i][3]-$priceToCompensate); if ( $price < $hotels[$j][3] ) { $hotels[$i][4]++; } else { $hotels[$j][4]++; } } } usort($hotels, function($hotelA, $hotelB){ return $hotelB[4]-$hotelA[4]; }); return array_map(function($hotel){ return $hotel[0]; }, $hotels); }
Output for git.master, git.master_jit, rfc.property-hooks
0.1: 20 - 380 0.2: 20 - 260 0.3: 20 - 180 0.4: 20 - 140 0.5: 20 - 120 0.6: 20 - 100 0.7: 20 - 80 0.8: 20 - 80 0.9: 20 - 60 1: 20 - 60 1.1: 20 - 60 1.2: 20 - 60 1.3: 20 - 40 1.4: 20 - 40 1.5: 20 - 40 1.6: 20 - 40 1.7: 20 - 40 1.8: 20 - 40 1.9: 20 - 20 2: 20 - 20 2.1: 20 - 20 2.2: 20 - 20 2.3: 20 - 20 2.4: 20 - 20 2.5: 20 - 20 2.6: 20 - 20 2.7: 20 - 20 2.8: 20 - 20 2.9: 20 - 20 3: 20 - 20 3.1: 20 - 20 3.2: 20 - 20 3.3: 20 - 20 3.4: 20 - 20 3.5: 20 - 20 3.6: 20 - 20 3.7: 20 - 20 3.8: 20 - 20

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