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


PHP HeaderUtil::sendHeaders方法代碼示例

本文整理匯總了PHP中HeaderUtil::sendHeaders方法的典型用法代碼示例。如果您正苦於以下問題:PHP HeaderUtil::sendHeaders方法的具體用法?PHP HeaderUtil::sendHeaders怎麽用?PHP HeaderUtil::sendHeaders使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在HeaderUtil的用法示例。


在下文中一共展示了HeaderUtil::sendHeaders方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: execute

 /**
  * @see Action::execute()
  */
 public function execute()
 {
     parent::execute();
     // add edit note
     $postData = array();
     if (!$this->board->getPermission('canHideEditNote') && (WCF::getUser()->userID != $this->post->userID || $this->post->time <= TIME_NOW - POST_EDIT_HIDE_EDIT_NOTE_PERIOD * 60)) {
         $postData['editor'] = WCF::getUser()->username;
         $postData['editorID'] = WCF::getUser()->userID;
         $postData['lastEditTime'] = TIME_NOW;
         $postData['editCount'] = $this->post->editCount + 1;
         $postData['editReason'] = '';
     }
     // update message
     $this->post->updateMessage($this->text, $postData);
     if ($this->thread->firstPostID == $this->post->postID) {
         // update first post preview
         $this->post->updateFirstPostPreview($this->post->threadID, $this->post->postID, $this->text, array('enableSmilies' => $this->post->enableSmilies, 'enableHtml' => $this->post->enableHtml, 'enableBBCodes' => $this->post->enableBBCodes));
     }
     $this->executed();
     // get new formatted message and return it
     $postList = new PostList();
     $postList->sqlConditions = 'post.postID = ' . $this->postID;
     $postList->readPosts();
     $post = reset($postList->posts);
     HeaderUtil::sendHeaders();
     echo $post->getFormattedMessage();
 }
開發者ID:joaocustodio,項目名稱:EmuDevstore-1,代碼行數:30,代碼來源:PostMessageEditAction.class.php

示例2: show

 /**
  * @see Page::show()
  */
 public function show()
 {
     parent::show();
     HeaderUtil::sendHeaders();
     echo $this->post->message;
 }
開發者ID:joaocustodio,項目名稱:EmuDevstore-1,代碼行數:9,代碼來源:PostMessagePage.class.php

示例3: display

 /**
  * Outputs a template.
  *
  * @param	string		$templateName
  * @param	boolean		$sendHeaders		if true, content type header is echoed
  */
 public function display($templateName, $sendHeaders = true)
 {
     if ($sendHeaders) {
         HeaderUtil::sendHeaders();
         // call shouldDisplay event
         if (!defined('NO_IMPORTS')) {
             EventHandler::fireAction($this, 'shouldDisplay');
         }
     }
     $compiledFilename = $this->getCompiledFilename($templateName);
     $sourceFilename = $this->getSourceFilename($templateName);
     // check if compilation is necessary
     if (!$this->isCompiled($sourceFilename, $compiledFilename)) {
         // compile
         $this->compileTemplate($templateName, $sourceFilename, $compiledFilename);
     }
     include $compiledFilename;
     if ($sendHeaders) {
         // call didDisplay event
         if (!defined('NO_IMPORTS')) {
             EventHandler::fireAction($this, 'didDisplay');
         }
     }
 }
開發者ID:CaribeSoy,項目名稱:contest-wcf,代碼行數:30,代碼來源:Template.class.php


注:本文中的HeaderUtil::sendHeaders方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。