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


PHP Revision::getRawText方法代碼示例

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


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

示例1: getRawText

 /**
  * Get the text of the current revision. No side-effects...
  *
  * @return String|bool The text of the current revision. False on failure
  */
 public function getRawText()
 {
     $this->loadLastEdit();
     if ($this->mLastRevision) {
         return $this->mLastRevision->getRawText();
     }
     return false;
 }
開發者ID:seedbank,項目名稱:old-repo,代碼行數:13,代碼來源:WikiPage.php

示例2: execute

 public function execute()
 {
     $db = wfGetDB(DB_MASTER);
     if (!$db->tableExists('revision')) {
         $this->error("revision table does not exist", true);
     }
     $this->output("Populating rev_len column\n");
     $start = $db->selectField('revision', 'MIN(rev_id)', false, __FUNCTION__);
     $end = $db->selectField('revision', 'MAX(rev_id)', false, __FUNCTION__);
     if (is_null($start) || is_null($end)) {
         $this->output("...revision table seems to be empty.\n");
         $db->insert('updatelog', array('ul_key' => 'populate rev_len'), __METHOD__, 'IGNORE');
         return;
     }
     # Do remaining chunks
     $blockStart = intval($start);
     $blockEnd = intval($start) + $this->mBatchSize - 1;
     $count = 0;
     $missing = 0;
     while ($blockStart <= $end) {
         $this->output("...doing rev_id from {$blockStart} to {$blockEnd}\n");
         $res = $db->select('revision', Revision::selectFields(), array("rev_id >= {$blockStart}", "rev_id <= {$blockEnd}", "rev_len IS NULL"), __METHOD__);
         # Go through and update rev_len from these rows.
         foreach ($res as $row) {
             $rev = new Revision($row);
             $text = $rev->getRawText();
             if (!is_string($text)) {
                 # This should not happen, but sometimes does (bug 20757)
                 $this->output("Text of revision {$row->rev_id} unavailable!\n");
                 $missing++;
             } else {
                 # Update the row...
                 $db->update('revision', array('rev_len' => strlen($text)), array('rev_id' => $row->rev_id), __METHOD__);
                 $count++;
             }
         }
         $blockStart += $this->mBatchSize;
         $blockEnd += $this->mBatchSize;
         wfWaitForSlaves(5);
     }
     $logged = $db->insert('updatelog', array('ul_key' => 'populate rev_len'), __METHOD__, 'IGNORE');
     if ($logged) {
         $this->output("rev_len population complete ... {$count} rows changed ({$missing} missing)\n");
         return true;
     } else {
         $this->output("Could not insert rev_len population row.\n");
         return false;
     }
 }
開發者ID:GodelDesign,項目名稱:Godel,代碼行數:49,代碼來源:populateRevisionLength.php

示例3: upgradeRow

 /**
  * @param $row
  * @param $table
  * @param $idCol
  * @param $prefix
  * @return bool
  */
 protected function upgradeRow($row, $table, $idCol, $prefix)
 {
     $db = $this->getDB(DB_MASTER);
     if ($table === 'archive') {
         $rev = Revision::newFromArchiveRow($row);
     } else {
         $rev = new Revision($row);
     }
     $text = $rev->getRawText();
     if (!is_string($text)) {
         # This should not happen, but sometimes does (bug 20757)
         $this->output("Text of revision with {$idCol}={$row->{$idCol}} unavailable!\n");
         return false;
     } else {
         $db->update($table, array("{$prefix}_sha1" => Revision::base36Sha1($text)), array($idCol => $row->{$idCol}), __METHOD__);
         return true;
     }
 }
開發者ID:Tjorriemorrie,項目名稱:app,代碼行數:25,代碼來源:populateRevisionSha1.php


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