php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #43622 Failed to parse document!
Submitted: 2007-12-18 11:15 UTC Modified: 2007-12-18 12:15 UTC
From: cj at dafolo dot dk Assigned:
Status: Not a bug Package: SimpleXML related
PHP Version: 5.2.5 OS: FreeBSD
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: cj at dafolo dot dk
New email:
PHP Version: OS:

 

 [2007-12-18 11:15 UTC] cj at dafolo dot dk
Description:
------------
Failed to parse document with namespace

Reproduce code:
---------------
<?xml version="1.0" encoding="utf-8"?>
<Root xmlns:edoclist="http://www.fujitsu.dk/esdh/xml/schemas/2007/01/14/">
  <edoclist:ArchiveFormats>
    <edoclist:ArchiveFormat>
      <edoclist:ArchiveFormatCode>1</edoclist:ArchiveFormatCode>
      <edoclist:ArchiveFormatFileExtension>DOC</edoclist:ArchiveFormatFileExtension>
      <edoclist:ArchiveFormatMimetype>application/msword</edoclist:ArchiveFormatMimetype>
    </edoclist:ArchiveFormat>
  </edoclist:ArchiveFormats>
</Root>

$string = file_get_contents('http://mygreeceholiday.discoball.pil.dk/webservice/ArchiveFormat-result.xml');
    $document = simplexml_load_string($string);
    if (!$document){
         echo "Failed to parse document!\n";
    }
    else{
        print_r($document);
    }


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2007-12-18 12:15 UTC] felipe@php.net
Thank you for taking the time to write to us, but this is not
a bug. Please double-check the documentation available at
http://www.php.net/manual/ and the instructions on how to report
a bug at http://bugs.php.net/how-to-report.php

Hi,
Use the fourth paramater of the function.

E.g.:
$document = simplexml_load_string($string, null, null, 'http://www.fujitsu.dk/esdh/xml/schemas/2007/01/14/');
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 16 15:01:29 2024 UTC