|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-01-08 09:10 UTC] derick@php.net
[2008-01-08 09:10 UTC] derick@php.net
[2008-07-20 16:09 UTC] pajoye@php.net
[2015-01-09 01:04 UTC] ajf@php.net
-Status: Assigned
+Status: Closed
[2015-01-09 01:04 UTC] ajf@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 14 14:00:01 2025 UTC |
Description: ------------ escapeshellarg(string) removes all % out of it. This results in a non working version for arguments that requires % for formating. ie. imagick identify.exe identify -format "%m" myimage.png Reproduce code: --------------- <?php echo escapeshellarg('%m %f %v'); Expected result: ---------------- '%m %f %v' Actual result: -------------- ' m f v'