exec命令不起作用(php)

时间:2014-11-04 04:43:18

标签: php html apache

我正在开发一个php应用程序,这是我的代码:

    <html>
<head>
<meta charset="UTF-8" />
</head>

<?php
if (isset($_POST['PLAY']))
{
exec("open /Applications/Chess.app");
}
?>
<form method="post">
<button name="PLAY">Play Chess</button><br>

</form>
</html>

但是当我运行它时,按下按钮,应用程序无法打开。谢谢你的帮助!

1 个答案:

答案 0 :(得分:1)

/Applications/Chess.app之前有一个空格 试试

exec("open/Applications/Chess.app");