Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个文件,它通过 php 从 mysql 数据库打印一个变量,说它被称为independent.php. 如果我们通过 localhost/independent.php 打开文件,该文件将显示带有 html 的信息。
independent.php
是否可以包含independent.php在另一个 php 文件中,并且只显示通过 php 生成的内容而不是 html,independent.php以便使用 ajax 出现新的 html?
如果您只想使用代码的特定部分,请将其设为模块化。将其分解为函数和/或类。将 HTML 输出与获取数据的部分分开,以便您可以独立调用两者。没有其他理智的方法。