ID: 32006
Updated by: [EMAIL PROTECTED]
Reported By: hoarau76 at free dot fr
-Status: Open
+Status: Bogus
Bug Type: Strings related
Operating System: windows XP pro
PHP Version: 5.0.3
New Comment:
Your regular expression is obviously wrong, as it cuts '\n' at the
end.
Change your code to 'preg_match("/begin ([0-7]+)
(.+)\r?\n(.+)\r?end/Us", $data, $part)' and see that convert_uudecode()
work fine.
Previous Comments:
------------------------------------------------------------------------
[2005-02-18 22:23:14] hoarau76 at free dot fr
I gave all information you need to check this bug.
If you need something more, please tell me what you need EXACTLY
------------------------------------------------------------------------
[2005-02-17 08:15:25] [EMAIL PROTECTED]
Not enough information was provided for us to be able
to handle this bug. Please re-read the instructions at
http://bugs.php.net/how-to-report.php
If you can provide more information, feel free to add it
to this bug and change the status back to "Open".
Thank you for your interest in PHP.
------------------------------------------------------------------------
[2005-02-17 01:23:05] hoarau76 at free dot fr
Description:
------------
I can't uudecode a string
it works under perl or winrar, but not with php 5.03
Reproduce code:
---------------
<?php
$data =
file_get_contents("http://www.chez.com/hoarau/bad_size.alt.binaries.picture.erotica.breasts.natural.87617");
if (preg_match("/begin ([0-7]+) (.+)\r?\n(.+)\r?\nend/Us", $data,
$part))
{
$file = convert_uudecode($part[3]);
}
?>
Expected result:
----------------
I expect this script to work but it doesn't and gave me:
PHP Warning: convert_uudecode(): The given parameter is not a valid
uuencoded s
tring. in C:\a.php on line 7
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=32006&edit=1