<?php $info_details = array( "<b>title:</b> this is title", "<b>name:</b> this is name", "<b>created:</b> this is date" ); $return = array(); foreach($info_details as $val){ list ($key, $value) = explode(":",strip_tags($val), 2); $return[$key] = $value; } print_r($return);
You have javascript disabled. You will not be able to edit any code.