Ok... since it is always the same thing, let's cut it in words...
<?
$strTexte = "Temperature is +1.9C and wind speed is 4m/s";
$arrTexte = explode(" ", $strTexte);
print_r($arrTexte);
?>
Will print :
"Array ( [0] => Temperature [1] => is [2] => +1.9C [3] => and [4] => wind [5] => speed [6] => is [7] => 4m/s )"
Now, to isolate the temperature and the wind speed...
<?
$strTexte = "Temperature is +1.9C and wind speed is 4m/s";
$arrTexte = explode(" ", $strTexte);
$strTemperature = $arrTexte[2];
$strWindspeed = $arrTexte[7];
?>
And... that's it ! 🙂