Error: Object # has no method ‘load’
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-20 10:59:20 浏览: 评论:0
今天在做一个xml输出时发现我们直接使用echo输入的xml文档会提示Error: Object # has no method ‘load’错误的,后改用了header()输出xml头文件就解决了,下面记录一下.
xml长的和txt文件太相似,所以导致我总和txt混为一谈,代码如下:
- echo '<?xml version="1.0" encoding="UTF-8"?>
- <sitemap>
- <loc>http://www.phpfensi.com/</loc>
- <lastmod>2013-01-22T11:00:18+08:00</lastmod>
- </sitemap>
- ';
- exit;
这么一段代码,死活输出的xml无法通过xml验证.
Error: Object # has no method ‘load’
最后查了半天都和直接放在1.xml里的文件一样,代码如下:
- <?xml version="1.0" encoding="UTF-8"?>
- <sitemap>
- <loc>http://www.phpfensi.com/</loc>
- <lastmod>2013-01-22T11:00:18+08:00</lastmod>
- </sitemap>
加个header就好了,折腾了好几个小时,代码如下:
- <?php
- header("Content-type:text/xml");
- echo '<?xml version="1.0" encoding="UTF-8"?>
- <sitemap>
- <loc>http://www.phpfensi.com/</loc>
- <lastmod>2013-01-22T11:00:18+08:00</lastmod>
- </sitemap>
- ';
- exit;
- ?>
Tags: Error: Object has no method ‘load’
相关文章
- ·Fatal error: Call to undefined function curl_init(2013-11-28)
- ·Fatal error: Cannot redeclare 常见问题(2013-11-29)
- ·PHP Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE(2013-11-29)
- ·PHP Parse Error: syntax error, unexpected $end 错误的解决办法(2013-12-04)
- ·Fatal error: Out of memory (allocated 786432)提示解决办法(2013-12-04)
- ·PHP 报错 Fatal error: Class 'COM' not found in(2013-12-05)
- ·php提示Fatal error: Call to undefined function imagecreate()(2014-09-21)
- ·Fatal error: Allowed memory size of 134217728 bytes exhauste(2014-09-21)
- ·php提示Parse error: syntax error, unexpected T_ENDWHILE in(2014-09-21)
- ·php Fatal error: Call to undefined function imagecreatefromjpeg()(2015-04-04)
- ·php Fatal error: Call to undefined function mb_convert_encoding()(2015-04-04)
- ·php提示Fatal error: Call to undefined function openssl_x509_parse()(2015-04-04)
- ·php使用ZipArchive提示Fatal error: Class ZipArchive not found in(2015-04-09)
- ·Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 2611816 bytes)(2021-04-24)
- ·Cannot use object of type stdClass as array(2013-11-28)
- ·mysql_fetch_array 与 mysql_fetch_object函数与用法(2014-09-12)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)