Home  >  Article  >  php教程  >  Error: Object # has no method ‘load’

Error: Object # has no method ‘load’

WBOY
WBOYOriginal
2016-05-25 16:42:061110browse

今天在做一个xml输出时发现我们直接使用echo输入的xml文档会提示Error: Object # has no method ‘load’错误的,后改用了header()输出xml头文件就解决了,下面记录一下.

xml长的和txt文件太相似,所以导致我总和txt混为一谈,代码如下:

echo &#39;<?xml version="1.0" encoding="UTF-8" 
	<sitemap> 
	<loc>http://www.phprm.com/</loc> 
	<lastmod>2013-01-22T11:00:18+08:00</lastmod> 
	</sitemap> 
	&#39;; 
	exit; 

这么一段代码,死活输出的xml无法通过xml验证.

Error: Object # has no method ‘load’

最后查了半天都和直接放在1.xml里的文件一样,代码如下:

<?xml version="1.0" encoding="UTF-8" 
	<sitemap> 
	<loc>http://www.phprm.com/</loc> 
	<lastmod>2013-01-22T11:00:18+08:00</lastmod> 
	</sitemap> 

加个header就好了,折腾了好几个小时,代码如下:

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn