我可以使用 rest 命令检索某些信息,它显示的数据(在浏览器中)已经是 XML。检索信息后如何将其保存到服务器上的 XML 文件中。
我已经用 $dom-save 命令尝试过了,但我似乎做错了什么。任何帮助,将不胜感激。请参阅下面的代码(我想将 $response 保存到 XML。)
<?php
require_once 'includes/rest_connector.php';
require_once 'includes/session.php';
// check to see if we start a new session or maintain the current one
checksession();
$rest = new RESTConnector();
$url = "/api/tax_codes/0/";
$rest->createRequest($url,"GET", null, $_SESSION['cookies'][0]);
$rest->sendRequest();
$response = $rest->getResponse();
$error = $rest->getException();
// save our session cookies
if ($_SESSION['cookies']==null)
$_SESSION['cookies'] = $rest->getCookies();
// display any error message
if ($error!=null)
echo $error;
// display the response
if ($response!=null)
echo $response;
else
echo "There was no response.";
?>