PHP output XML must be header solution _php tips

Source: Internet
Author: User

This example describes the solution to the header of PHP output XML. Share to everyone for your reference. The specific methods are as follows:

Problem Description:

The most recent XML output that we used to input with Echo would prompt Error:object # has no method ' load ' error, and then the header () Output XML header file was resolved, as recorded below.

Workaround:

Because the XML long and TXT file is too similar, so cause i sum txt confused.

Now take a look at the following code:

Copy Code code as follows:
Echo ' <?xml version= "1.0" encoding= "UTF-8"?>
<sitemap>
<loc>http://www.jb51.net/</loc>
<lastmod>2013-01-22T11:00:18+08:00</lastmod>
</sitemap>
';
Exit

This is a piece of code, anyway. XML cannot be validated by XML.
Prompt error Error:object # has no method ' load '
The last time I checked, it was just like a file in 1.xml.
The specific code is as follows
Copy Code code as follows:
<?xml version= "1.0" encoding= "UTF-8"?>
<sitemap>
<loc>http://www.jb51.net/</loc>
<lastmod>2013-01-22T11:00:18+08:00</lastmod>
</sitemap>

It would be nice to add a header. It's been a couple of hours.
The specific code is as follows
Copy Code code as follows:
<?php
Header ("Content-type:text/xml");
Echo ' <?xml version= "1.0" encoding= "UTF-8"?>
<sitemap>
<loc>http://www.jb51.net/</loc>
<lastmod>2013-01-22T11:00:18+08:00</lastmod>
</sitemap>
';
Exit

I hope this article will help you with your PHP program design.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.