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


PHP Crawler::get方法代碼示例

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


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

示例1: get

    {
        return file_get_contents($uri);
    }
    public function get($type)
    {
        $method = "_get_{$type}";
        if (method_exists($this, $method)) {
            return call_user_method($method, $this);
        }
    }
    protected function _get_images()
    {
        if (!empty($this->markup)) {
            preg_match_all('/<img([^>]+)\\/>/i', $this->markup, $images);
            return !empty($images[1]) ? $images[1] : FALSE;
        }
    }
    protected function _get_links()
    {
        if (!empty($this->markup)) {
            preg_match_all('/<a([^>]+)\\>(.*?)\\<\\/a\\>/i', $this->markup, $links);
            return !empty($links[1]) ? $links[1] : FALSE;
        }
    }
}
$crawl = new Crawler('http://www.cricinfo.com/ci/content/current/match/fixtures/index.html');
$images = $crawl->get('images');
$links = $crawl->get('links');
foreach ($links as $value) {
    print $value . "\n";
}
開發者ID:bala345,項目名稱:CodeSamples,代碼行數:31,代碼來源:wc.php

示例2: Crawler

<?php

include_once "Crawler.class.php";
$LEVELS = 1;
//how many levels deep do you want to Crawl?
//CRAWL the page specified by url and look for all images or links
if (empty($_REQUEST['url']) || $_REQUEST['url'] == " ") {
    $url = "http://bcmoney-mobiletv.com";
} else {
    $url = $_REQUEST['url'];
}
$crawl = new Crawler($url, $LEVELS);
$images = $crawl->get('images');
$links = $crawl->get('links');
$embeds = $crawl->get('embeds');
//DEBUG (print parsed values)
echo "<a href=\"{$url}\" target=\"_blank\">{$url}</a>";
echo "<br/><br/>IMAGES: <pre>";
print_r($images);
echo "</pre><br/>LINKS: <pre>";
print_r($links);
echo "</pre><br/>EMBEDS: <pre>";
print_r($embeds);
echo "</pre>";
/*
foreach ($images as $image) { ; }
foreach ($links as $link) { ; }
foreach ($embeds as $embed) { ; }
*/
開發者ID:anubhaBhargava,項目名稱:OpenRecommender,代碼行數:29,代碼來源:index.php


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