运行简单的PHP脚本时出错

时间:2011-06-24 08:15:42

标签: php

我正在尝试运行这个简单的脚本:

<?php

$PHP_PATH = "c:\Program Files (x86)\PHP\\";
$CLIENTPATH = dirname(__FILE__)."\Client.php";
$SERVER = "http://localhost:8080/mobile/Server";

$handle = popen("C:\WINDOWS\system32\cmd /C start ".$PHP_PATH." -f ".$CLIENTPATH." ".$SERVER, 'r');

?>

但我总是得到这个Windows消息框错误:

Windows cannot find c:\program. Please make sure you typed the name correctly and then try again.

在Google上搜索我也发现这个thread有关此错误的信息,但是我认为这些措施非常轻微。 那问题就在我的代码中?或者可能有其他错误?

感谢。

1 个答案:

答案 0 :(得分:1)

您需要转义$PHP_PATH = "c:\Program Files (x86)\PHP\\";中的空格!