我的文件上有纬度和经度数据,我正在尝试通过convertor函数调用该数据。
我试图为该$result60行添加功能,但它不起作用。我正在尝试传递该函数的值,因此它将使用DM方法计算正确的纬度和经度。
试图
$re60 = '/([EW])([0-9][0-9][0-9])([0-9][0-9])/s';
$str60 = 'E16130';
//$subst60 = '\\3\\2\\1';
$subst60 = DMS2Decimal($degr = \\2, $mins = \\3, $secs = 0, $dir = \\1);
$result60 = preg_replace($re60, $subst60, $str60);
echo "The result of the substitution is ".$result60;
我该如何解决这个问题?
慕盖茨4494581