我只是在 php 中做一个 excersise。我已经启动了我的 Lamp 服务器,创建了 html 文件并将其发送到 /opt/lampp/htdocs(在 phpinfo() 中看到了)。这是tip.html的内容:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html lang="EN" dir="ltr" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title> TIP OF THE DAY</title>
</head>
<!-- start the body -->
<body>
<h1>Tip of the day</h1>
<?php
print "<h3> Here is your tip:</h3>";
?>
<div style="border-color:green; border-style: groove; border-width: 2px;">
<?php
readFile("tips.txt");
?>
</div>
</body>
</html>
当我打开 localhost/tip.html 时,它给了我一个部分输出......这是你的提示:“;?> 部分解析来自 php 脚本标签的输出???任何信息为什么会这样?