If you don't want to use a foreach you can use a callback on array_map or array_walk but that is still iterating the array. Why not just use foreach?
You have to use explode twice to achieve this. First to separate the entires, then to divide the entires into key and value:
$string = 'house : 10 bedroom, car : porsche 911, wife : model';
$elements = explode(',', $string);
array_walk($elements, 'trim');
$goodLife = array();
foreach($elements as $element) {
list($key, $value) = explode(':', $element, 2);
$goodLife[trim($key)] = trim($value);
}
print_r($goodLife);
Functions used: