我使用下面的腳本:返回單個變量從陣列
http://www.micahcarrick.com/php-zip-code-range-and-distance-calculation.html
要獲得一個郵政編碼的細節,我用這:
$selected = $z->get_zip_details($zip);
$result = implode(",", $selected);
echo $result;
這將返回的所有細節「$拉鍊」:
32.9116,-96.7323,達拉斯,達拉斯,德克薩斯州,得克薩斯州,214,中央
任何1都可以幫助我使腳本只返回城市變量?該腳本的常見問題解答如下:
get_zip_details($zip)
Returns the details about the zip code: $zip. Details are in the form of a keyed array. The keys are: latitude, longitude, city, county, state_prefix, state_name, area_code, and time_zone. All are pretty self-explanitory. Returns false on error.
不幸的是我無法弄清楚如何獲得單個值(城市)。將不勝感激任何幫助!
謝謝!
非常感謝!我試圖做echo $ get_zip_details ['city'];以及更多!它現在工作正常,我會記住它的未來:) – Andrej 2011-03-17 10:20:23