tpl1.php

来自「视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.」· PHP 代码 · 共 39 行

PHP
39
字号
<?phpinclude_once 'HTML/Template/PHPLIB.php';include_once 'Benchmark/Timer.php';/*** "keep" = keep unknown template variables,* "remove" = remove 'em,* "comment" = put them into comments** use keep if you have stylesheets or JavaScript* in your HTML code since those are also using* { and } which will then get removed.*/$t =& new Template_PHPLIB("./", "keep");$timer =& new Benchmark_Timer();$timer->start();$t->setFile(array(	"main" => "tpl1.ihtml"));$welcome = "Welcome to the real world";$t->setVar(array(	"TITLE" => "This is my title",	"BGCOLOR" => "#cccccc",	"CONTENT" => $welcome));/*** or, use: $t->pparse("out", array("main"));*/$t->parse("out", array("main"));$t->p("out");$timer->stop();$timer->display();?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?