我正在开发一个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>
但是当我运行它时,按下按钮,应用程序无法打开。谢谢你的帮助!
答案 0 :(得分:1)
/Applications/Chess.app
之前有一个空格
试试
exec("open/Applications/Chess.app");