ID: 19876
Updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
-Status: Open
+Status: Feedback
Bug Type: *URL Functions
Operating System: Windows 2000 Pro (Sp3)
PHP Version: 4CVS-2002-10-11
New Comment:
The 1 comes from 'echo print_r' you do not need to echo print_r() it'll
do it automatically. The missing letter is something I am unable to
replicate on any of my machines. Could you please should output of
phpinfo() on your system, maybe that'll yeild some clues.
Previous Comments:
------------------------------------------------------------------------
[2002-10-11 22:54:02] [EMAIL PROTECTED]
Snapshot used: php4-win32-200210120200.zip
This simple script parses an ftp-url:
<?php
$url =
"ftp://gandalf:[EMAIL PROTECTED]/foo/bar/index.php?page=news";
$parts = parse_url($url);
echo '<pre>'."\n";
echo print_r($parts)."\n";
echo '</pre>'."\n";
?>
When i run the script i get this output:
Array
(
[scheme] => ftp
[host] => www.moria.com
[user] => gandalf
[pass] => mello
[path] => /foo/bar/index.php
[query] => page=news
)
1
Note the cropped password value... it is cropped by one charachter...
last snapshot i tested (2002-10-06) did not have this behaviour.
BTW: What does the 1 that is output after the value pairs mean?
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=19876&edit=1