3v4l.org

run code in 300+ PHP versions simultaneously
<?php $input = '1234567'; $array = ['1', '12', '123', '1234', '456', '56', '7', '3456', '234567']; $results = []; foreach ($array as $data) { if (strpos($input, $data) === 0) { $results[strlen($data)][] = $data; } } krsort($results); // best results - you can use foreach to scroll them all var_dump($results); // pick the best result echo current($results)[0]; // 1234
Output for git.master, git.master_jit, rfc.property-hooks
array(4) { [4]=> array(1) { [0]=> string(4) "1234" } [3]=> array(1) { [0]=> string(3) "123" } [2]=> array(1) { [0]=> string(2) "12" } [1]=> array(1) { [0]=> string(1) "1" } } 1234

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