php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #61735 parse_url file:// fails with Windows dir separators
Submitted: 2012-04-15 02:27 UTC Modified: 2012-04-15 09:57 UTC
From: nanocaiordo at gmail dot com Assigned:
Status: Not a bug Package: URL related
PHP Version: 5.3.10 OS: Windows 7
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
45 - 32 = ?
Subscribe to this entry?

 
 [2012-04-15 02:27 UTC] nanocaiordo at gmail dot com
Description:
------------
Using the file:// scheme, parse_url() fails when the path has windows 
DIRECTORY_SEPARATOR, \

Test script:
---------------
var_dump(parse_url('file://'. dirname(__FILE__)));

Expected result:
----------------
array()

Actual result:
--------------
bool(false)

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2012-04-15 09:57 UTC] pajoye@php.net
\ is not a valid character in an URL.

While php streams functions are more flexible when used with the file or stream 
related (fopen and co), parse_url strictly applies the URI RFC.
 [2012-04-15 09:57 UTC] pajoye@php.net
-Status: Open +Status: Not a bug
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Wed Apr 24 00:01:32 2024 UTC