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
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
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: Sat Jun 10 05:03:36 2023 UTC