<?php $item[0] = "apple=5"; $item[1] = "banana=7"; $item[2] = "orange=8"; $result = []; foreach ($item as $string) { [$key, $result[$key]] = sscanf($string, '%[^=]=%d'); } var_dump($result);
You have javascript disabled. You will not be able to edit any code.