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


PHP DOMDocument::hasAttribute方法代碼示例

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


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

示例1: get

 /**
  * DOMから有効なサムネイルを取得する
  * 有効な場合は畫像のURLを返卻する
  * 無効な場合は false を返卻する
  *
  * @param  DOMDocument $dom
  * @return mixed
  */
 public function get($dom)
 {
     if ($dom->hasAttribute('width') && $dom->hasAttribute('height') && $dom->hasAttribute('alt') && !$dom->hasAttribute('title')) {
         $src = $dom->getAttribute('src');
         if (preg_match('/^http(s)?:\\/\\/blog-imgs-.*\\.fc2\\.com.*/', $src)) {
             return str_replace('-origin', '', $src);
         }
     }
     return false;
 }
開發者ID:xzxzyzyz,項目名稱:laravel-crawler,代碼行數:18,代碼來源:Fc2.php

示例2: get

 /**
  * DOMから有効なサムネイルを取得する
  * 有効な場合は畫像のURLを返卻する
  * 無効な場合は false を返卻する
  *
  * @param  DOMDocument $dom
  * @return mixed
  */
 public function get($dom)
 {
     if ($dom->hasAttribute('width') && $dom->hasAttribute('height') && $dom->hasAttribute('alt') && !$dom->hasAttribute('title')) {
         $src = $dom->getAttribute('src');
         if (preg_match('/^http(s)?:\\/\\/stat.*\\.ameba\\.jp.*/', $src)) {
             return $src;
         }
     }
     return false;
 }
開發者ID:xzxzyzyz,項目名稱:laravel-crawler,代碼行數:18,代碼來源:Ameba.php

示例3: get

 /**
  * DOMから有効なサムネイルを取得する
  * 有効な場合は畫像のURLを返卻する
  * 無効な場合は false を返卻する
  *
  * @param  DOMDocument $dom
  * @return mixed
  */
 public function get($dom)
 {
     if ($dom->hasAttribute('class') && strpos($dom->getAttribute('class'), 'pict') === 0) {
         return $dom->getAttribute('src');
     }
     return false;
 }
開發者ID:xzxzyzyz,項目名稱:laravel-crawler,代碼行數:15,代碼來源:Livedoor.php

示例4: getElementsByProperty

 /**
  * @param             $tag
  * @param             $propertyName
  * @param             $propertyValue
  * @param DOMDocument $node
  *
  * @return array
  */
 public function getElementsByProperty($tag, $propertyName, $propertyValue, $node = null)
 {
     $nodes = $node == null ? $this->getElementsByTagName($tag) : $node->getElementsByTagName($tag);
     $result = array();
     /** @var DOMElement $node */
     foreach ($nodes as $node) {
         if ($node->hasAttribute($propertyName)) {
             if ($node->getAttribute($propertyName) == $propertyValue) {
                 $result[] = $node;
             }
         }
     }
     return $result;
 }
開發者ID:Bakerpedia,項目名稱:Developement_WPengine,代碼行數:22,代碼來源:EasyRecipeDOMDocument.php


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