Home > php教程 > php手册 > body text

Error: Object # has no method ‘load’

WBOY
Release: 2016-05-25 16:42:06
Original
1109 people have browsed it

今天在做一个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; 
Copy after login

这么一段代码,死活输出的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> 
Copy after login

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

Copy after login

Related labels:
source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!