Ben şöyle bir dize var:
$fetched = name=myName zip=420424 country=myCountry;
// and so on, it is not an array
Ben bir API bu değerleri getir.
Ben sadece zip = 873289 (infact sadece sayılar) istiyorum.
Yani kullanın:
// $fetched above is the output of the function below
$fetched = file_get_contents("http://example.com");
Bu şekilde ben içeriğini getir ve bu kod ile eşleşebilir
$zip = preg_match ('/zip=[0-9]+/', $fetched );
Ama değişkende saklamak istiyorum, eşleşen sonuçları saklamak için fonksiyonu nedir?