3v4l.org

run code in 300+ PHP versions simultaneously
<?php function testAsc($array) { $memory=null; foreach($array as $member) { if ($memory)if($member<=$memory)return false; $memory=$member; } return true; } function solution($array) { for($i=0;$i<count($array);$i++) { $currentArray=array_filter($array, function($index) use($i) { return $i != $index; }, ARRAY_FILTER_USE_KEY); if(testAsc($currentArray)) return implode($currentArray) . "\n"; } return 'nie da sie' . "\n"; } echo solution([1, 2, 3, 4]);//234 echo solution([1, 7, 7, 4]);//nie da sie echo solution([1, 7, 2, 4]);//124
Output for git.master, git.master_jit, rfc.property-hooks
234 nie da sie 124

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:
29.37 ms | 401 KiB | 8 Q