ittest.php

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

PHP
34
字号
<?phpinclude_once 'HTML/Template/IT.php';include_once 'Benchmark/Timer.php';$articles = array(        "ISBN345624345" => "Matrix 2",        "ISBN45df32342" => "Roger Rabbit",        "ISBN305632232" => "foo bar",        "ISBN674589123" => "Joe user's adventures");$t =& new HTML_Template_IT("./");$timer =& new Benchmark_Timer();$timer->start();$t->loadTemplateFile("block.ihtml",true,true);$t->setVariable(array(        "TITLE" => "This is a block integrated into another template",        "BGCOLOR" => "#cccccc",        "BLOCKER" => "block"));foreach ($articles as $k => $v) {	$t->setCurrentBlock("articlerow");	$t->setVariable("ID", $k);	$t->setVariable("ANAME", $v);	$t->parseCurrentBlock("articlerow");}$t->show();$timer->stop();$timer->display();?>

⌨️ 快捷键说明

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