我的问题是关于 php 函数include();
是否可以包含一个主要的 php 文件来存储所有变量、函数、查询等。并且可以在 html 中,为所需的函数和变量在 php 中添加标签和标签?
我觉得这会让我的 html 看起来仍然很漂亮,但我不确定它的效率。
配置文件
<?php
$username = 'foo';
function getPoints(){};
mysqli_query(,);
所以基本上 index.php 将是
<?php include('config.php') ?>
<hmtl>
<head></head>
<div id="ui"><? echo $variable?></div>
<body></body>
</html>