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


PHP Crawler::extract方法代碼示例

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


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

示例1: extract

 public function extract($attribute, $asString = false)
 {
     return true === $asString ? implode(null, parent::extract($attribute)) : parent::extract($attribute);
 }
開發者ID:ghassani,項目名稱:xiv-lodestone-php-api,代碼行數:4,代碼來源:Crawler.php

示例2: getSimilarSiblingsInfo

 /**
  * @param Crawler $block
  * @return array
  */
 public function getSimilarSiblingsInfo(Crawler $block)
 {
     $all_siblings = $block->parents()->first()->children();
     $siblings = [$block];
     $sample_node = $block->getNode(0);
     $sample_tag = $block->nodeName();
     $sample_classes = explode(' ', $block->extract(['class'])[0]);
     foreach ($all_siblings as $sibling) {
         if ($sample_node->isSameNode($sibling)) {
             continue;
         }
         $to_add = false;
         if ($sibling->nodeName == $sample_tag) {
             if ($sample_classes === FALSE) {
                 $to_add = true;
             } else {
                 $sibling_classes = explode(' ', $sibling->getAttribute('class'));
                 $matched_classes = array_intersect($sample_classes, $sibling_classes);
                 if (!empty($matched_classes)) {
                     if ($matched_classes != $sample_classes) {
                         $sample_classes = $matched_classes;
                     }
                     $to_add = true;
                 }
             }
         }
         if ($to_add) {
             $siblings[] = new Crawler($sibling);
         }
     }
     return [$siblings, ['tag' => $sample_tag, 'classes' => $sample_classes]];
 }
開發者ID:nfqakademija,項目名稱:dydis-turi-reiksme,代碼行數:36,代碼來源:ClassMatcher.php

示例3: getSource

 /**
  * @param Crawler $image
  * @return string
  */
 public function getSource(Crawler $image)
 {
     $source = $image->extract(['src'])[0];
     if (strpos($source, $this->base_url) !== FALSE) {
         return $source;
     }
     $delimiter = '';
     if ($source[0] != '/') {
         $delimiter = '/';
     }
     return $this->base_url . $delimiter . $source;
 }
開發者ID:nfqakademija,項目名稱:dydis-turi-reiksme,代碼行數:16,代碼來源:ComponentInspector.php


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