以下のコードは検索した郵便番号の50マイル以内で半径検索を行うよう書いています。クリニックの場所のリストの代わりに、最も近いクリニックの場所だけを見つけるようにこのコードを変更するにはどうすればよいですか?したがって、コロラド州デンバーの郵便番号を入力して、私の所在地がニューヨーク、PA、オハイオ州にある場合、どうすれば最も近い場所をオハイオ州に置くことができますか?PHP/MYSQLで最寄りの郵便番号の場所を見つけよう
/* RADIUS SEARCH - 50 MILES FROM THE ZIP CODE VARIABLE */
$zipcode=trim($_REQUEST['zipcode']);
//Find Out The Longitude & Latitude of Zipcode in existing database
$zcquery = "SELECT * FROM wp_nava5jxxyp_zipcodes WHERE zipcode = $zipcode";
$result = mysqli_query($dbc, $zcquery);
$row = mysqli_fetch_array($result);
$lat = $row['latitude'];
$long = $row['longitude'];
//Setting the Default Distance 50 Miles
// (Equation 1/69 = 0.0144927536231884 * 50 miles equals result below)
$miles = 0.7246376811594203;
/* Query To Search for all of the Zip Codes within the range */
$query = 'SELECT zipcode from wp_nava5jxxyp_zipcodes
WHERE latitude between ' . $lat . ' - ' . $miles . ' and ' . $lat . ' + ' . $miles . '
and longitude between ' . $long . ' - ' . $miles . ' and ' . $long . ' + ' . $miles;
$result = mysqli_query($dbc, $query);
//Put those zip codes into a variable array
$variabele = array();
while($row = mysqli_fetch_array($result))
{
if($row['zipcode'] != '')
$variabele[] = $row['zipcode'];
}
$zipcodelist = implode(', ', $variabele);
// Close Connection
mysqli_close($dbc);
//Query Database For Any Clinics that are included in zip code list
$args = array(
'posts_per_page' => 10,
'orderby' => 'post_title',
'order' => 'DESC',
'post_type' => 'clinics',
'meta_query' => array (
array (
'key' => 'cliniczipcode',
'value' => $zipcodelist,
'compare' => 'IN'
)
));
// the query
$the_query = new WP_Query($args);
使用半正矢式を与えます。 「MySQLでの場所の検索」を参照してください。 – chris85
Sql Statementを1に制限した場合、それは私に最も近い場所を教えてくれますか? – user2593040
距離で 'Limit'と' order'を距離で指定します。 – chris85