使用php消费Web服务

时间:2009-09-04 13:39:19

标签: php web-services

有人能举例说明我如何使用php来使用以下Web服务吗?

http://www.webservicex.net/uszip.asmx?op=GetInfoByZIP

2 个答案:

答案 0 :(得分:12)

这是一个使用curl和GET接口的简单示例。

$zip = 97219;
$url = "http://www.webservicex.net/uszip.asmx/GetInfoByZIP?USZip=$zip";

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

$result = curl_exec($ch);

curl_close($ch);

$xmlobj = simplexml_load_string($result);

$result变量包含看起来像这样的

<?xml version="1.0" encoding="utf-8"?>
<NewDataSet>
  <Table>
    <CITY>Portland</CITY>
    <STATE>OR</STATE>
    <ZIP>97219</ZIP>
    <AREA_CODE>503</AREA_CODE>
    <TIME_ZONE>P</TIME_ZONE>
  </Table>
</NewDataSet>

将XML解析为SimpleXML对象后,您可以使用以下各种节点:

print $xmlobj->Table->CITY;

如果你想获得幻想,你可以把整件事扔进一个班级:

class GetInfoByZIP {
    public $zip;
    public $xmlobj;

    public function __construct($zip='') {
        if($zip) {
            $this->zip = $zip;
            $this->load();
        }
    }

    public function load() {
        if($this->zip) {
            $url = "http://www.webservicex.net/uszip.asmx/GetInfoByZIP?USZip={$this->zip}";

            $ch = curl_init();
            curl_setopt($ch, CURLOPT_URL, $url);
            curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

            $result = curl_exec($ch);

            curl_close($ch);

            $this->xmlobj = simplexml_load_string($result);
        }
    }

    public function __get($name) {
        return $this->xmlobj->Table->$name;
    }
}

然后可以像这样使用:

$zipInfo = new GetInfoByZIP(97219);

print $zipInfo->CITY;

答案 1 :(得分:2)

我会使用带有curl的HTTP POST或GET接口。看起来它为您提供了一个很好的干净XML输出,您可以使用simpleXML进行解析。

以下内容会一路走来(警告,完全未经测试):

$ch = curl_init('http://www.webservicex.net/uszip.asmx/GetInfoByZIP?USZip=string');

curl_setopt($ch,CURLOPT_RETURNTRANSFER,TRUE);
$xml = curl_exec($ch);
curl_close($ch);
$parsed = new SimpleXMLElement($xml);

print_r($parsed);