1
存儲值我有一個字符串,它看起來是這樣的:找到並從字符串
$fetched = name=myName zip=420424 country=myCountry;
// and so on, it is not an array
我從API獲取這些值。
我只想要zip = 873289(事實上只有數字)。
於是我就用:
// $fetched above is the output of the function below
$fetched = file_get_contents("http://example.com");
這樣,我取的內容,可以使用此代碼
匹配,但我想它存儲在變量,什麼是功能存儲匹配結果?