3v4l.org

run code in 300+ PHP versions simultaneously
<?php $a = ['0000', '000000', '000']; function getzeros($val) { $highest = 0; $position = 0; $answer = ''; foreach($val as $key => $value){ if($value != '') { if (strlen($value) > $highest) { $answer = $value; $highest = strlen($value); $position = $key; } } } echo "The longest string was '" . $answer . "', with a length of " . strlen($answer) . ", at index " . $position; } getzeros($a);
Output for git.master, git.master_jit, rfc.property-hooks
The longest string was '000000', with a length of 6, at index 1

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:
86.96 ms | 405 KiB | 5 Q