本文整理汇总了PHP中tpl_flush函数的典型用法代码示例。如果您正苦于以下问题:PHP tpl_flush函数的具体用法?PHP tpl_flush怎么用?PHP tpl_flush使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了tpl_flush函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: tpl_flush
<?php
tpl_flush();
?>
<?php
tpl_includeFile('pageheader.html');
?>
<article class="page">
<!-- wikipage start -->
<?php
tpl_content();
?>
<!-- wikipage stop -->
<!--<div class="clearer"></div>-->
</article><!-- /.page -->
<?php
tpl_flush();
?>
<?php
tpl_includeFile('pagefooter.html');
?>
</div><!-- /.pad -->
</div><!-- /#dokuwiki__content -->
<!--<div class="clearer"></div>-->
<hr class="a11y" />
<!-- PAGE ACTIONS -->
<?php
if ($showTools) {
?>
<div id="dokuwiki__pagetools">
<h3 class="a11y"><?php
echo $lang['page_tools'];
开发者ID:geekitude,项目名称:dokuwiki-template-mixture,代码行数:31,代码来源:tpl_layout_classic.old.php
示例2: tpl_flush
<?php }?>
</div>
<?php tpl_flush()?>
<?php /*old includehook*/ @include(dirname(__FILE__).'/pageheader.html')?>
<div class="page">
<!-- wikipage start -->
<?php tpl_content()?>
<!-- wikipage stop -->
</div>
<div class="clearer"></div>
<?php tpl_flush()?>
<div class="stylefoot">
<div class="meta">
<div class="user">
<?php tpl_userinfo()?>
</div>
<div class="doc">
<?php tpl_pageinfo()?>
</div>
</div>
<?php /*old includehook*/ @include(dirname(__FILE__).'/pagefooter.html')?>
<div class="bar" id="bar__bottom">
开发者ID:neutrinog,项目名称:Door43,代码行数:31,代码来源:main.php
示例3: html
/**
* Output the Statistics
*/
function html()
{
echo '<div id="plugin__statistics">';
echo '<h1>' . $this->getLang('menu') . '</h1>';
$this->html_timeselect();
tpl_flush();
$method = 'html_' . $this->opt;
if (method_exists($this, $method)) {
echo '<div class="plg_stats_' . $this->opt . '">';
echo '<h2>' . $this->getLang($this->opt) . '</h2>';
$this->{$method}();
echo '</div>';
}
echo '</div>';
}
开发者ID:splitbrain,项目名称:dokuwiki-plugin-statistics,代码行数:18,代码来源:admin.php
示例4: sendGIF
/**
* Just send a 1x1 pixel blank gif to the browser
*
* @author Andreas Gohr <[email protected]>
* @author Harry Fuecks <[email protected]>
*/
function sendGIF()
{
$img = base64_decode('R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAEALAAAAAABAAEAAAIBTAA7');
header('Content-Type: image/gif');
header('Content-Length: ' . strlen($img));
header('Connection: Close');
print $img;
tpl_flush();
// Browser should drop connection after this
// Thinks it's got the whole image
}
开发者ID:boycaught,项目名称:dokuwiki,代码行数:17,代码来源:indexer.php
注:本文中的tpl_flush函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论