php手动加载视图文件
更新:HHH   时间:2023-1-7


  1. test.php:
    <?php
    $title = "测试标题";
    $a = require 'test.html';
    $a = exec($a);
    echo $a;
  2. test.html:
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <title><?php echo $title;?></title>
    </head>
    <body>
    <?php for($i = 0;$i < 10;$i++):?>
        <p><?php echo $i;?></p>
    <?php endfor;?>
    </body>
    </html>
  3. 关于smarty模板:
    smarty是在类中进行操作的,通过正则把 test.html 中的变量找出来,然后赋值给smarty中的变量,间接的给模板赋值
返回web开发教程...