我有循环,为每个客户提供经度和纬度,我正在寻找一个函数,我可以将这些变量传递给它,它将找出北向和东向值。
我尝试过gPoint课程,但没有快乐。
Foreach ($clients as $client)
{
$client[lat];
$client[lon;];
Function convert($lat,$long)
}
答案 0 :(得分:0)
PHP中没有可以帮助您的本机功能。但您可以使用此:gpoint
示例:
<?php
$gpoint = new gPoint();
$gpoint->setLatLong($lat,$long);
$gpoint->convertLLtoLCC();
echo 'Northing and easting value: '. $gpoint->lccN() . ' ' . $gpoint->lccE();