1

我在我的网络应用程序中使用 Google 路线 API,有什么方法可以缩短 Google 提供的路线描述吗?

我的意思是,例如,

Take the 2nd right.
Take the 2nd left toward ...

我可以缩短它吗?它太长了。

我可以这样做吗:

2nd right>2nd left>

有没有办法修改结果?我使用 PHP 开发 Web 应用程序,使用 JSON 格式显示 API 结果。编辑:API 结果正确显示。但我想删除某些常用词,例如“Take”、“The”、“at”等 API 结果显示我的部分代码:if ($data->status === 'OK') { $route = $data->routes[0]; foreach ($route->legs as $leg) { foreach ($leg->steps as $step) { echo $step->html_instructions . "<br>\n";

4

1 回答 1

2

这对我有用,希望它也对你有用......

<?php
$test1 = 'Take the 2nd right.';
$test2 = 'Take the 2nd left toward the exit, then...';
$reg_find = '/Take the (.*?) (right|left).*/';
$reg_replace = '$1 $2';
$results = array(
    preg_replace($reg_find, $reg_replace, $test1),
    preg_replace($reg_find, $reg_replace, $test2)
);
echo implode('>', $results);
?>

编辑:

为了更灵活的解决方案,我创建了这个:

<?php
$test1 = 'Take the 2nd right.';
$test2 = 'Take the 2nd left toward the exit, then ...';
$remove = '/( ?)(take|then|at|toward|the|exit|\.|,)( ?)/i';
$results = array(
    preg_replace($remove, '', $test1),
    preg_replace($remove, '', $test2)
);
echo implode('>', $results);
?>
于 2012-08-06T05:07:53.677 回答