E' piuttosto elementare:

Codice PHP:
<pre>
<?php
$array 
= array('xy' => '0.484005:unlimited:0.261719:0.000315666:0:no:unlimited:OFF:ON:ON',
               
'xz' => '9.19919:unlimited:1.99219:0.155976:0:no:unlimited:OFF:ON:ON');
               
foreach (
$array as $key => $value) {
    print(
"$key => $value\r\n");
}
?> 
</pre>