<?php $result = []; $array = ["[3]:9","[2]:6"]; foreach($array as $v){ preg_match("/\[(.*)\]:(.*)/",$v,$matches); $result[$matches[1]] = $matches[2]; } print_r($result);
You have javascript disabled. You will not be able to edit any code.