當前位置: 首頁>>代碼示例>>PHP>>正文


PHP tpl_flush函數代碼示例

本文整理匯總了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 <andi@splitbrain.org>
 * @author Harry Fuecks <fuecks@gmail.com>
 */
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;未經允許,請勿轉載。