请参阅下面的代码示例,了解如何使用 curl 使用 xml、php 和 curl 从地理服务器获取项目。
<?php
$xml_builder = '
<?xml version="1.0" encoding="utf-8"?>
<ogc:GetMap xmlns:ogc="http://www.opengis.net/ows"
xmlns:gml="http://www.opengis.net/gml"
version="1.2.0"
service="WMS">
<StyledLayerDescriptor version="1.0.0">
<NamedLayer>
<Name>myNs:roads</Name>
<NamedStyle>
<Name>simple_roads</Name>
</NamedStyle>
</NamedLayer>
</StyledLayerDescriptor>
<Output>
<Format>image/png</Format>
<Size>
<Width>600</Width>
<Height>320</Height>
</Size>
</Output>
<Exceptions>application/vnd.ogc.se+xml</Exceptions>
</ogc:GetMap>
';
// We send XML via CURL using POST with a http header of text/xml.
$ch = curl_init('http://localhost:8080/GeoServer/wms');
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: text/xml'));
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $xml_builder);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$ch_result = curl_exec($ch);
curl_close($ch);
// Print CURL result.
echo $ch_result;
?>
显然,您将需要更改 XML 以适应您所追求的层等。如果从服务器的角度来看,它不在本地主机上,您还需要将 curl_init 中的 URL 更改为您的服务器。
如果一切正常,应该打印很多奇怪的文本,因为它是返回的图像。有时您可以在顶部的文本中看到 PNG,因为它是 png 标题的一部分。