|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2020-11-27 08:11 UTC] requinix@php.net
-Status: Open
+Status: Verified
-Type: Bug
+Type: Documentation Problem
[2020-11-27 08:11 UTC] requinix@php.net
[2021-09-24 16:46 UTC] git@php.net
[2021-09-24 16:46 UTC] git@php.net
-Status: Verified
+Status: Closed
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 21:00:02 2025 UTC |
Description: ------------ If I enter the URL like this "/path?#" The `parse_url()` function always return fragment and query array key while previous versions of PHP like 5.x, 7.x doesn't return these value if not exists. Expected result: ---------------- array( 'path' => '/path', ); Actual result: -------------- array( 'path' => '/path', 'query' => '', 'fragment' => '', );