|
|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-12-08 10:59 UTC] [email protected]
[2007-12-09 04:30 UTC] crrodriguez at suse dot de
[2007-12-09 16:37 UTC] [email protected]
|
|||||||||||||||||||||||||||||||||
|
All rights reserved. |
Last updated: Wed Jan 28 04:00:02 2026 UTC |
Description: ------------ escapeshellarg() returns null when passed an empty string instead of returning an empty string. The documentation doesn't say anything about giving a return value of null. Reproduce code: --------------- <?php var_dump(escapeshellarg('')); ?> Expected result: ---------------- string '' Actual result: -------------- null