使用SimpleXML的节点不再存在
尝试使用名为Get_Temporent的内置WordPress函数缓存XML文件,但收到php错误:
unSerialize()[unction.unSeries]:节点不再存在
//check the db to see if it exists ( get_transient is a WordPress function)
if (false === ($response_xml = get_transient('stats_from_xml_feed'))){
$request_url = "http://example.com/feed.xml";
$request_url = urlencode($request_url);
$response_xml = @simplexml_load_file($request_url);
//kill request if connection problem
if ($response_xml === FALSE){
exit ('could not connect');
} else {
// here we throw it into the WordPress temp DB using set_transient for 12 hours
set_transient('stats_from_xml_feed', $response_xml, 60*60*12);
//some output
$res = $response_xml;
$name = $res->name;
echo $name;
}
解决方案
您的$response_xml
是SimpleXMLElement
类的实例。SimpleXMLElement
不应(取消)序列化,因为它将resource包装在对象中。
相反,序列化一些可以顺利通过该过程的内容;来自提要的原始响应、将其加载到SimpleXMLElement
并使用asXML()
方法、所需(可能是字符串)值的数组或其他可以序列化的结构后的全部/部分XML。
需要考虑的一件事是,您将在"较旧"的PHP版本中看到unserialize(): Node no longer exists
警告。从PHP 5.3.2开始,行为更改为抛出Exception
并显示消息Serialization of 'SimpleXMLElement' is not allowed
。
相关文章