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>
提前致谢
答案 0 :(得分:3)
您需要从网络服务器
运行它http://localhost/ex1.php #or whatever the path is.
或在命令行中,如果在CLI中安装了php
php ex1.php
访问this site,了解如何在Mac上安装MAMP及其工作原理。