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


PHP Hash::apply方法代碼示例

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


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

示例1: testFilter

 public function testFilter()
 {
     $filter = new Hash();
     $this->assertEquals('0beec7b5ea3f0fdbc95d0dd47f3c5bc275da8a33', $filter->apply('foo'));
     $filter = new Hash('sha256');
     $this->assertEquals('2c26b46b68ffc68ff99b453c1d30413413422d706483bfa0f98a5e886266e7ae', $filter->apply('foo'));
 }
開發者ID:seytar,項目名稱:psx,代碼行數:7,代碼來源:HashTest.php

示例2: _getSimilarDocsIds

 /**
  * Returns similar documents ids from shingles
  * 
  * @return array
  */
 protected function _getSimilarDocsIds()
 {
     $similarDocsIds = array();
     $shingles = $this->_getShigles();
     foreach ($shingles as $docId => $shingles1Doc) {
         $shinglesList = Hash::apply($shingles, '{n}.{n}', 'array_count_values');
         $shingles1Doc = array_flip($shingles1Doc);
         $shinglesEquals = array_intersect_key($shinglesList, $shingles1Doc);
         $countSimilarShingles = array_sum($shinglesEquals) - count($shingles1Doc);
         $countShingles1Doc = count($shingles1Doc);
         $countShingles = count($shingles) - 1;
         if ($countSimilarShingles <= 0 || $countShingles1Doc <= 0 || $countShingles <= 0) {
             continue;
         }
         $similarity = round($countSimilarShingles / $countShingles1Doc * 100 / $countShingles, 2);
         if ($similarity > $this->_params['allowSimilarity']) {
             $similarDocsIds[$docId] = true;
             unset($shingles[$docId]);
         }
     }
     return $similarDocsIds;
 }
開發者ID:samokspv,項目名稱:exclude-similar-docs,代碼行數:27,代碼來源:ExcludeSimilarDocsShinglesAbstract.php

示例3: testApply

 /**
  * testApply
  *
  * @return void
  */
 public function testApply()
 {
     $data = static::articleData();
     $result = Hash::apply($data, '{n}.Article.id', 'array_sum');
     $this->assertEquals(15, $result);
 }
開發者ID:yuuicchan0912,項目名稱:sample1,代碼行數:11,代碼來源:HashTest.php


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