当前位置: 首页>>代码示例>>PHP>>正文


PHP curl::app方法代码示例

本文整理汇总了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 "Ничего не найдено";
     }
 }
开发者ID:andreymukha,项目名称:kinopoisk_parser,代码行数:15,代码来源:kinopoisk.php


注:本文中的curl::app方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。