<?php $str = "Name,Age,Location Jo,28,London Do,35,London"; $arr= explode("\n", $str); $keys = explode(",",array_shift($arr)); Foreach($arr as $line){ $new[]= array_combine($keys, explode(",", $line)); } Var_dump($new);
You have javascript disabled. You will not be able to edit any code.