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
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
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

Pull Requests

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-2025 The PHP Group
All rights reserved.
Last updated: Tue Mar 18 08:01:29 2025 UTC