admin 发表于 2020-11-25 11:31

smarty框架生成简单的混编文件案例代码

smarty框架生成简单的混编文件案例代码
php代码:
<?php
$title='锄禾';
$str=file_get_contents('./index.html');
$str=str_replace('{','<?php echo ',$str);        //替换左大括号
$str=str_replace('}',';?>',$str);                        //替换右大括号
file_put_contents('./index.html.php', $str);        //写入混编文件
require './index.html.php';        //包含混编文件html代码:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
</head>

<body>
{$title}
</body>
</html>
页: [1]
查看完整版本: smarty框架生成简单的混编文件案例代码