1. 程式人生 > >php手動加載視圖文件

php手動加載視圖文件

com images htm cto tle exe alt 技術分享 php

  • test.php:
    技術分享圖片
    <?php
    $title = "測試標題";
    $a = require ‘test.html‘;
    $a = exec($a);
    echo $a;
  • 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>
  • php手動加載視圖文件