我有一个用于注册用户的 PHP 脚本,但在此过程中,我试图调用 Google GEOCoding javascript 方法来返回客户端 lat/lng 并将其记录到数据库,然后再继续我的 PHP 注册过程。
可以这样做还是有更好的方法?
我当前的代码如下所示:
private function process() {
$this->validate();
$this->register();
// execute javascript here to record lat/lng coordinates to the DB.
$this->goHome();
}