Можно как то так попробовать:
<?php
$sting = "name: John Doe
age: 25
role: admin
property_1: 1000
property_2: 2000
property_3: 3000
property_4:
property_5: 5000
";
preg_match_all("/(\w+): *(\w*)/", $sting, $matches);
echo "<pre>";
$result = array();
foreach ($matches[1] as $key => $val) {
$result[$val] = $matches[2][$key];
}
print_r($result);
/*
array(
[name] => John
[age] => 25
[role] => admin
[property_1] => 1000
[property_2] => 2000
[property_3] => 3000
[property_4] =>
[property_5] => 5000
)
*/