How do I to properly handle spaces in PHP Shell_exec? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T19:51:33Z http://stackoverflow.com/feeds/question/378490 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/378490/how-do-i-to-properly-handle-spaces-in-php-shellexec 0 How do I to properly handle spaces in PHP Shell_exec? Freddo411 2008-12-18T17:00:20Z 2009-10-09T19:01:08Z <p>I'm running on win2003 server, PHP 526, via the cmd-line.</p> <p>I have a cmdline string:</p> <pre><code>$cmd = ' "d:\Prog Files\foo.exe" -p "d:\data path\datadir" '; </code></pre> <p>Trying to do this in php code</p> <pre><code>$out = `$cmd`; # note use of backticks AKA shell_exec </code></pre> <p>results in a failure by foo.exe as it interprets the -p arg as "d:\data".</p> <p>However, the same <code>$cdm</code> string copied to the windows shell cmdline executes successfully.</p> <p>How do I properly handle spaces in PHP <code>shell_exec</code>?</p> http://stackoverflow.com/questions/378490/how-do-i-to-properly-handle-spaces-in-php-shellexec/378610#378610 3 Answer by Ciaran McNulty for How do I to properly handle spaces in PHP Shell_exec? Ciaran McNulty 2008-12-18T17:42:22Z 2008-12-18T17:42:22Z <p>Use escapeshellarg() to escape your arguments, it should escape it with an appropriate combination of quotation marks and escaped spaces for your platform (I'm guessing you're on Windows).</p> http://stackoverflow.com/questions/378490/how-do-i-to-properly-handle-spaces-in-php-shellexec/792975#792975 0 Answer by Maarten for How do I to properly handle spaces in PHP Shell_exec? Maarten 2009-04-27T10:21:43Z 2009-04-27T10:21:43Z <p>I'm having the same problem.</p> <p>As soon as I put double quotes around an argument after the path (c:/program files/path/to) I get the error 'C:\Program' is not recognized as an internal or external command, operable program or batch file.</p> <p>I tried escaping the ' and/or ", using escapeshellarg() but nothing seems to help.</p> <p>Does somebody knows what the problem is?</p> http://stackoverflow.com/questions/378490/how-do-i-to-properly-handle-spaces-in-php-shellexec/903110#903110 0 Answer by dan for How do I to properly handle spaces in PHP Shell_exec? dan 2009-05-24T04:56:38Z 2009-05-24T04:56:38Z <p>exactly same problem but i want to run something on "C:\documents and settings\user\desktop\folder\exe.exe"</p> <p>'C:\Documents' is not recognized as an internal or external command</p> http://stackoverflow.com/questions/378490/how-do-i-to-properly-handle-spaces-in-php-shellexec/1529223#1529223 0 Answer by nate for How do I to properly handle spaces in PHP Shell_exec? nate 2009-10-07T02:38:18Z 2009-10-07T02:38:18Z <p>This is an interesting problem. Apparently, PHP lets you put double quotes around the program or the arguments, but not both. It may be worth reporting this as a bug.</p> <p>A work around is to use the DOS 8.3 name instead of quotes. E.g., "C:\Program Files\" usually becomes "C:\Progra~1".</p> http://stackoverflow.com/questions/378490/how-do-i-to-properly-handle-spaces-in-php-shellexec/1545523#1545523 0 Answer by gregpk for How do I to properly handle spaces in PHP Shell_exec? gregpk 2009-10-09T19:01:08Z 2009-10-09T19:01:08Z <p>Had this problem too - came up with an idea to route the launching through cmd.exe. The trick here is not to get lost in the double qoutes. Generally you want to put anything you want to run in:</p> <pre><code>exec('cmd /c " '.$path.' "'; </code></pre> <p>Where $path is a already double-quoted path to your executable. Example:</p> <pre><code>$path = '"C:\Program Files\ToDoList Simple\ToDoList.exe" "C:\SomePath\todo.tdl" -nt test -cm test2'; </code></pre>