php

位置:IT落伍者 >> php >> 浏览文章

PHP中获得$Smarty.capture.name截获的输出


发布日期:2024年01月12日
 
PHP中获得$Smarty.capture.name截获的输出

想要获得$smarty>display后的输出并作为字符串赋给php变量有两种方法:

ob_start

ob_start();

$smarty>display(StockNews/getLefttpl);

$string = ob_get_contents();

ob_end_clean();

$smarty>_smarty_vars[capture][captureName];

$smarty>display(StockNews/getLefttpl);

$string = $smarty>_smarty_vars[capture][captureName];

//captureName为{capture name=banner}中的name;

//方法需在tpl中使用capture捕获输出

//和第一种原理是一样的查看编译的php的到

//php $this>_smarty_vars[capture][captureName] = ob_get_contents(); ob_end_clean(); ?>

//不难看出smarty的capture正是使用了php的ob_start方法

总结这个技巧在部分静态化页面中很有用处也就是说当使用了smarty而且某页面需一部分静态一部分动态输出时可以利用上述方法

我在smarty中静态页面时采用这种方法

statichtml

indexphp

includeStatictpl

indextpl

needStatictpl

indexphp //主页此页中分需静态部分及动态输出部分

<?PHP
if(file_exists(statichtml)){
//存在静态页输出静态页
//使用capture截获包含静态页后的输出
$smarty>assign(filenamestatichtml);
$smarty>display(includeStatictpl);
//动态输出部分
$num = rand();
$smarty>assign(num$num );
//再次display输出index
$smarty>display(indextpl);
}else{
//不存在静态页往下继续运行并生成静态页
//这里使用上述方法动态获得需静态部分的输出这里使用的方法一同样也可以使用方法二
ob_start();
//假如要静态数组$array在display后的输出
$smarty>assign(array$array);
$smarty>display(needStatictpl);
//将动态输出内容存至$string变量
$string = ob_get_contents();
ob_end_clean();
//生成静态页
$handle = fopen(statichtmlwb);
fwrite($handle$string);
fclose($handle);
//动态输出部分
$num = rand();
$smarty>assign(num$num );
//输出index
$smarty>display(indextpl);
}
?>
statichtml //此页是主页中静态部分产生的静态页

我是静态页!

includeStatictpl //假如存在静态页则通过display此页截获一个输出(用在index中的)

{capture name=staticed}

{include file=$filename}

{/capture}

needStatictpl //没有已静态好的页面时动态生成静态页此处为主页静态部分的tpl

{capture name=staticed}

{section name=a loop=$array}

{$array[a]}

{/section}

{/capture}

indextpl //首页输出包括静态及动态部分无论静态html是否存在都会通过capture截获输出用在此页

我是首页

这里是静态部分

{$smartycapturestaticed}

这里是动态部分

{$num}

当不愿在php中使用界定符或直接输出html标记时(这样显得代码很乱==!)可以通过上述两种方法将display后的html赋给一个php变量以便操作

               

上一篇:如何利用php数组对百万数据进行排重

下一篇:PHP将DateTime对象转化为友好时间显示的实现代码