2013-03-29 41 views
-2

我很难将此PHP 5.3引入的匿名函数转换为使用早期版本的PHP。将匿名PHP函数转换为使用PHP <5.3

我得到的错误是: 意外的T_FUNCTION和$ testResult。这是匿名功能。任何人都可以将其转换为使用早期版本的PHP。代码在一个类中。

下面是代码:

abstract class geocoder { 
    public $ch = null; 
    public $xd = null; 
    public $xp = null; 

    public function __construct() { 
     $this->ch = curl_init(); 
     curl_setopt_array($this->ch, array (
      CURLOPT_BINARYTRANSFER => true, 
      #CURLOPT_FAILONERROR => true, 
      CURLOPT_FOLLOWLOCATION => false, 
      #CURLOPT_FORBID_REUSE => true, 
      #CURLOPT_MUTE => true, 
      CURLOPT_RETURNTRANSFER => true, 
      CURLOPT_TIMEOUT => 2, 
      #CURLOPT_COOKIEJAR => '/dev/null', 
      #CURLOPT_COOKIEFILE => '/dev/null', 
      #CURLOPT_INTERFACE => 'x.x.x.x', 
      CURLOPT_USERAGENT => 'curl/7.21.4 (universal-apple-darwin11.0) libcurl/7.21.4 OpenSSL/0.9.8r zlib/1.2.5', 
      CURLOPT_HEADER => false)); 
    } 

    public function doreq($u) { 
     curl_setopt($this->ch, CURLOPT_URL, $u); 
     return curl_exec($this->ch); 
    } 

    abstract public function dogeocode($q); 
} 

class geocodeGMaps extends geocoder { 
    public function __construct() { 
     parent::__construct(); 
     #$this->xd = new DOMDocument(); 
     #$this->xp = new DOMXpath($this->xd); 
    } 

    public function testResult(&$res) { 
      switch (true) { 
       case !$res: 
        return 'Remote call HTTP request failed'; 
       case !($res = @json_decode($res, true)): 
        return 'Failed to parse JSON result'; 
       case !isset($res['status']): 
        return 'Remote call returned NULL status'; 
       case !($res['status'] == 'OK'): 
        return 'Remote call returned !OK status'; 
       case !isset($res['results']): 
       case !isset($res['results'][0]): 
        return 'NULL or empty result set'; 
       case !isset($res['results'][0]['geometry']['location_type']): 
        return 'NULL location type'; 
       case !($res['results'][0]['geometry']['location_type'] == 'ROOFTOP'): 
        return ''; 
       case !isset($res['results'][0]['geometry']['location']): 
       case !isset($res['results'][0]['geometry']['location']['lat']): 
       case !isset($res['results'][0]['geometry']['location']['lng']): 
        return 'No location returned in result'; 
       default: 
        return NULL; 
        break; 
      } 
      return NULL; 
    } 

    public function dogeocode($q) { 
     $res = @$this->doreq("http://maps.googleapis.com/maps/api/geocode/json?address=" . urlencode($q) . "&sensor=false"); 

     if ($testResult = testResult($res)) 
      throw new Exception ($testResult); 

     $comp = array('query' => &$q); 
     $map = array(
      'street_number' => 'street_number', 
      'route' => 'route', 
      'city' => 'locality', 
      'county' => 'administrative_area_level_2', 
      'state' => 'administrative_area_level_1', 
      'country' => 'country', 
      'zip' => 'postal_code'); 

     if (isset($res['results'][0]['address_components'])) { 
      foreach ($res['results'][0]['address_components'] as &$v) 
       foreach ($map as $k => &$l) 
        if (in_array($l, $v['types']) && !isset($comp[$k])) 
         $comp[$k] = $v['long_name']; 
     } 

     return array ('formatted' => (isset($res['results'][0]['formatted_address']) ? $res['results'][0]['formatted_address'] : NULL), 
        'components' => &$comp, 
        'latlng' => array ($res['results'][0]['geometry']['location']['lat'], 
           $res['results'][0]['geometry']['location']['lng'])); 
    } 
} 

在使这项工作在PHP 5.2任何人的帮助?

+0

什么特别是不适用于早期版本? –

回答

1

只是做

function testResult(&$res) { 

    // ... code 

} 

然后:

if ($testResult = testResult($res)) 
    throw new Exception ($testResult); 

编辑:

现在,我可以看到这是一类,你需要移动新testResult功能出dogeocode,并使其成为防止Fatal error: Cannot redeclare testResult()的新方法。然后您可以使用它:

if ($restResult = $this->testResult($res)) 
    throw new Exception ($testResult); 
+0

我试过了,但那不行。其实这个功能是在一个类中。我想尽一切办法让这项工作成功,但没有成功。 – akshitsethi

+0

不以什么方式工作?有错误吗?意外的结果? – MichaelRushton

+0

我已经更新了代码。希望这有助于理解代码正在尝试做什么。 – akshitsethi