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 页面中包含一个 .shtml 文件。我知道这是可能的,因为我以前做过(尽管我忘记了代码)。请问有人可以帮忙吗?
我建议使用:
include_once('/includes/header.shtml');
你试过了吗 :
echo file_get_contents('/includes/header.shtml'); // or echo file_get_contents('includes/header.shtml');
它可能会起作用。
但我会开始将所有模板转换为任何可用的 php 模板引擎。