PHP..在 Mac 上单击文件时无法运行
ex1.php
**里面的代码
<?php
echo "hello world";
?>
我也尝试过这个(ex2.html):
<html>
<head>
<title>A PHP script</title>
</head>
<body>
<b>
<?php
echo "hello world";
?>
</b>
</body>
</html>
提前感谢
ex1.php
**code inside
<?php
echo "hello world";
?>
I also tried this (ex2.html):
<html>
<head>
<title>A PHP script</title>
</head>
<body>
<b>
<?php
echo "hello world";
?>
</b>
</body>
</html>
thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果在 CLI 中安装了 php,则需要从网络服务器
或命令行运行它,您
访问 此站点了解如何在 Mac 上安装 MAMP 及其工作原理。
you need to run it from a webserver
or on the command line if php is installed in CLI you
Visit this site to see how to install MAMP on your mac and how it works.