本文整理汇总了PHP中curl::app方法的典型用法代码示例。如果您正苦于以下问题:PHP curl::app方法的具体用法?PHP curl::app怎么用?PHP curl::app使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类curl
的用法示例。
在下文中一共展示了curl::app方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct($name, $type = NULL)
{
$this->curl = curl::app('http://www.kinopoisk.ru/');
$this->curl->setReferer('http://www.kinopoisk.ru/')->setUagent()->setHeader()->setHeaders(array('Accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'Accept-Language' => 'ru,en-us;q=0.7,en;q=0.3', 'Accept-Charset' => 'windows-1251,utf-8;q=0.7,*;q=0.7', 'Keep-Alive' => '300', 'Connection' => 'keep-alive'));
$this->search_name = $name;
$this->doc = phpQuery::newDocument(self::getPage($this->search_name, $type), "text/html; charset=windows-1251");
$this->img = $this->doc->find('.film-img-box a img')->attr('src') ? base64_encode(file_get_contents($this->doc->find('.film-img-box a img')->attr('src'))) : base64_encode(file_get_contents("http://st.kp.yandex.net/images/persons/photo_none.png"));
if ($this->page_id[1] == 'name') {
$this->GetArtistInit();
} elseif ($this->page_id[1] == 'film') {
$this->GetFilmInit();
} else {
echo "Ничего не найдено";
}
}