创建函数返回2个变量?

时间:2011-07-18 23:14:41

标签: php

这是我的功能:

<?php
function latLng($str){
    $address = $str;
    // Initialize delay in geocode speed
    $delay = 0;
    $base_url = "http://maps.google.com/maps/geo?output=xml&key=" . $key;

    // Iterate through the rows, geocoding each address
    $geocode_pending = true;
    $request_url = $base_url . "&q=" . urlencode($address);
    $xml = simplexml_load_file($request_url) or die("url not loading");

    $status = $xml->Response->Status->code;
    if (strcmp($status, "200") == 0) {
        // Successful geocode
        $geocode_pending = false;
        $coordinates = $xml->Response->Placemark->Point->coordinates;
        $coordinatesSplit = split(",", $coordinates);
        // Format: Longitude, Latitude, Altitude
        $lat = $coordinatesSplit[1];
        $lng = $coordinatesSplit[0];
    } else if (strcmp($status, "620") == 0) {
        // sent geocodes too fast
        $delay += 100000;
    } else {
        // failure to geocode
        $geocode_pending = false;
        echo "Address " . $address . " failed to geocoded. ";
        echo "Received status " . $status . "\n";
        usleep($delay);
    }
    echo $lat . "<br />";
    echo $lng;
}

echo latLng("Praha City Center, Klimentska 46, Prague, Czech Republic, 11002");
?>

它完美地回显了lat和lng页面,但是我想将它们作为变量返回,所以基本上我在函数中包装了一个地址,然后返回$lat$lng变量我要使用的页面。

我该怎么做?

谢谢

4 个答案:

答案 0 :(得分:2)

$returnArray['latitude'] = $lat;
$returnArray['longitude'] = $lng;

return $returnArray;

或者更好的是,创建一个名为EarthCoordinate的对象,它具有lat和long,并将它们设置为该对象。然后你可以制定方法来找到纬度/经度等之间的距离......

答案 1 :(得分:1)

你可以将它们作为array();

返回
return array('lat' => $lat, 'lng' => $lng);

答案 2 :(得分:1)

两个选项:

  1. 返回$coordinatesSplit数组,并在需要时打印其元素
  2. 为函数创建两个by-ref参数:

    function latLng($str, &$lat, &$lng) {
      //.....
       $lat = $coordinatesSplit[1];
       $lng = $coordinatesSplit[0];
      // ....
    }
    
  3. 然后使用它们:

         $lat = $lng = null;
         latLng("Praha City Center, Klimentska 46, Prague, Czech Republic, 11002", $lat, $lng);
         echo $lat;
         echo $lng; // or whatever you want to do with them
    

答案 3 :(得分:0)

您可以使用数组或只将两者结合起来并返回它们:

<?php
   function latLng($str){
     .......
     .......
     geo_data = array()
     geo_data['lat'] = $lat;
     geo_data['lng'] = $lng;

     return $geo_data;
   }

   $geo_data = latLng("Praha City Center, Klimentska 46, Prague, Czech Republic, 11002");
   var_dump($geo_data);

?>

应该有帮助

// EDIT 哦等等 - 你已经使用了一个数组。

只需使用

return $coordinatesSplit;

并调用函数:

$geo_data = latLng("Praha City Center, Klimentska 46, Prague, Czech Republic, 11002"); 
var_dump($geo_data);

$ geo_data [1] = lat $ geo_data [0] = lng