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


PHP Text_Diff::Text_Diff方法代碼示例

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


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

示例1: assert

 /**
  * Computes a diff between sequences of strings.
  *
  * This can be used to compute things like case-insensitve diffs, or diffs
  * which ignore changes in white-space.
  *
  * @param array $from_lines         An array of strings.
  * @param array $to_lines           An array of strings.
  * @param array $mapped_from_lines  This array should have the same size
  *                                  number of elements as $from_lines.  The
  *                                  elements in $mapped_from_lines and
  *                                  $mapped_to_lines are what is actually
  *                                  compared when computing the diff.
  * @param array $mapped_to_lines    This array should have the same number
  *                                  of elements as $to_lines.
  */
 function Text_Diff_Mapped($from_lines, $to_lines, $mapped_from_lines, $mapped_to_lines)
 {
     assert(count($from_lines) == count($mapped_from_lines));
     assert(count($to_lines) == count($mapped_to_lines));
     parent::Text_Diff($mapped_from_lines, $mapped_to_lines);
     $xi = $yi = 0;
     for ($i = 0; $i < count($this->_edits); $i++) {
         $orig =& $this->_edits[$i]->orig;
         if (is_array($orig)) {
             $orig = array_slice($from_lines, $xi, count($orig));
             $xi += count($orig);
         }
         $final =& $this->_edits[$i]->final;
         if (is_array($final)) {
             $final = array_slice($to_lines, $yi, count($final));
             $yi += count($final);
         }
     }
 }
開發者ID:altesien,項目名稱:FinalProject,代碼行數:35,代碼來源:Mapped.php


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