Home » Networking » Net_URL » Bug #3942
addRawQueryString shouldn't delete old values
Details
| Submitted | 2005-03-24 11:58 UTC |
|---|---|
| From | wf at eteleon dot de |
| Status | Bogus |
| Package | Net_URL |
| PHP Version | 5.0.3 |
| OS | Linux |
| Roadmaps | (Not assigned) |
Comments
[2005-03-24 11:58 UTC] wf at eteleon dot de
Description:
------------
When setting a querystring with addRawQueryString(), the
old values shouldn't be deleted. The parts of the new
query string should just be added to the existing
values.
Reproduce code:
---------------
$url = new Net_URL("http://www.example.com/");
$url->addQueryString( "test", 1 );
$url->addRawQueryString( "test2=2" );
echo $url->getURL();
Expected result:
----------------
http://www.example.com/?test=1&test2=2
Actual result:
--------------
http://www.example.com/?test2=2