ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
``` // 1.引入smarty include 'libs/Smarty.class.php'; // 2.实例化Smarty $smarty = new Smarty; $smarty->template_dir = 'view'; // 3.编译并输出模板 $smarty->display('6.html'); ``` ``` <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> {include file="header.html"}//php引入函数的用法 <div style="height:400px;background:yellow;"> 这里是网站的主要内容 </div> {include file="footer.html"} </body> </html> ```