我想将多个PHP输出显示到单个HTML页面。在1摘要之后,应显示script.php
输出,在2摘要之后,应显示script1.php
输出。但是我在2次总结之后得到了PHP的输出。
<!DOCTYPE html>
<html lang="en">
<head>
<h2 align="center">DASHBOARD</h2>
</head>
<body>
<details>
<summary>1</summary>
<?php echo file_get_contents("https://servername/script.php"); ?>
</details>
<details>
<summary>2</summary>
<?php echo file_get_contents("https://servername/script1.php"); ?>
</details>
</body>
</html>
答案 0 :(得分:0)
我相信你想使用include,
file_get_contents将从网络中获取数据,因此输出将与您的浏览器相同(转到https://servername/script1.php并查看页面来源)
如果您的脚本位于另一台服务器上,那么,当然,您将无法使用include,或以任何方式从其他资源执行脚本。
答案 1 :(得分:0)
@ 2oppin - 谢谢。它通过关闭script1.php
来工作