我只需要拨打电话。 http://api.linnlive.com/stats.asmx?op=SimpleGenericQuery
我想在网页中使用它来运行查询并返回数据,如下所示:
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://api.linnlive.com/stats">
<SOAP-ENV:Body>
<ns1:SimpleGenericQueryCSV>
<ns1:Token>INSERT YOUR TOKEN HERE</ns1:Token>
<ns1:sqlQuery>select * from stockitem where blogicaldelete = '1'</ns1:sqlQuery>
</ns1:SimpleGenericQueryCSV>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
但我该怎么办?
我尝试制作一个xml文件并执行以下操作:
<?php
$xml = simplexml_load_file("/lookup.xml");
echo "result: ".$xml
?>
但我得到一个空白,任何想法?什么是正确的方法?