php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #71497 DOMDocument::documentURI incorrect path converting
Submitted: 2016-02-02 08:36 UTC Modified: 2016-02-02 09:03 UTC
Votes:1
Avg. Score:5.0 ± 0.0
Reproduced:1 of 1 (100.0%)
Same Version:0 (0.0%)
Same OS:1 (100.0%)
From: pvlgood at gmail dot com Assigned:
Status: Open Package: DOM XML related
PHP Version: 5.6.17 OS: Windows 8.1
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: pvlgood at gmail dot com
New email:
PHP Version: OS:

 

 [2016-02-02 08:36 UTC] pvlgood at gmail dot com
Description:
------------
See code sample below

Test script:
---------------
<?php
$dd = new DOMDocument();
$dd->load('folder/file.xml');
echo $dd->documentURI;
echo file_exists($dd->documentURI);

/*
output:
file:/D:/folder/file.xml
false

should be:
file://D:/folder/file.xml
true
*/


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2016-02-02 09:03 UTC] pvlgood at gmail dot com
-Package: Doc Build problem +Package: DOM XML related
 [2016-02-02 09:03 UTC] pvlgood at gmail dot com
sorry
 [2016-02-04 14:46 UTC] eaton dot alf at gmail dot com
This is also a problem when trying to load an XML file with a DTD: the path to the DTD file in the XML catalog is parsed incorrectly (converting "file:///" to "file:/"), so the DTD can't be loaded (the error given is "failed to load external entity").

This may be a libxml2 bug, as it broke between libxml versions 1.9.1 and 1.9.2, although the xmllint command line tool is still able to correctly load the DTD.
 
PHP Copyright © 2001-2023 The PHP Group
All rights reserved.
Last updated: Fri Jun 09 22:03:37 2023 UTC