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


PHP SiteConfig::use_apc方法代码示例

本文整理汇总了PHP中SiteConfig::use_apc方法的典型用法代码示例。如果您正苦于以下问题:PHP SiteConfig::use_apc方法的具体用法?PHP SiteConfig::use_apc怎么用?PHP SiteConfig::use_apc使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在SiteConfig的用法示例。


在下文中一共展示了SiteConfig::use_apc方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: HumbleHttpAgent

//////////////////////////////////
// Set up HTTP agent
//////////////////////////////////
$http = new HumbleHttpAgent();
$http->debug = $debug_mode;
$http->userAgentMap = $options->user_agents;
$http->headerOnlyTypes = array_keys($options->content_type_exc);
$http->rewriteUrls = $options->rewrite_url;
//$http->initCache($options->cache_dir, $options->cache_directory_level, $options->cache_cleanup, isset($options->http_cache_ttl) ? $options->http_cache_ttl : 12*60*60);
//////////////////////////////////
// Set up Content Extractor
//////////////////////////////////
$extractor = new ContentExtractor(dirname(__FILE__) . '/site_config/custom', dirname(__FILE__) . '/site_config/standard');
$extractor->debug = $debug_mode;
SiteConfig::$debug = $debug_mode;
SiteConfig::use_apc($options->apc);
$extractor->fingerprints = $options->fingerprints;
$extractor->allowedParsers = $options->allowed_parsers;
////////////////////////////////
// Get RSS/Atom feed
////////////////////////////////
if (!$html_only) {
    debug('--------');
    debug("Attempting to process URL as feed");
    // Send user agent header showing PHP (prevents a HTML response from feedburner)
    $http->userAgentDefault = HumbleHttpAgent::UA_PHP;
    // configure SimplePie HTTP extension class to use our HumbleHttpAgent instance
    SimplePie_HumbleHttpAgent::set_agent($http);
    $feed = new SimplePie();
    // some feeds use the text/html content type - force_feed tells SimplePie to process anyway
    $feed->force_feed(true);
开发者ID:yangchenghu,项目名称:full-text-rss,代码行数:31,代码来源:makefulltextfeed.php

示例2: fetchFromWebSite

 /**
  * fetch content from FullTextRss
  *
  * @author Jean Baptiste Favre
  * @return string content
  */
 private function fetchFromWebSite($url)
 {
     $this->extractor = new \ContentExtractor(\F3::get('FTRSS_DATA_DIR') . '/custom', \F3::get('FTRSS_DATA_DIR') . '/standard');
     if (\F3::get('logger_level') === "DEBUG") {
         ob_start();
         $this->extractor->debug = true;
         \SiteConfig::$debug = true;
     }
     \SiteConfig::use_apc(false);
     $this->extractor->fingerprints = $this->fingerprints;
     $this->extractor->allowedParsers = $this->allowed_parsers;
     $stream_opts = array('http' => array('timeout' => 5, 'method' => "GET", 'header' => "Accept-language: en-us,en-gb;q=0.8,en;q=0.6,fr;q=0.4,fr-fr;q=0.2\r\n" . "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\r\n" . "User-Agent: SimplePie/1.3.1 (Feed Parser; http://simplepie.org; Allow like Gecko) Build/20121030175911" . "DNT: 1"));
     $context = stream_context_create($stream_opts);
     $url = $this->removeTrackersFromUrl($url);
     // Load web page
     $html = @file_get_contents($url, false, $context);
     if ($html === false) {
         return false;
     }
     return $html;
 }
开发者ID:ZMOM1031,项目名称:selfoss,代码行数:27,代码来源:fulltextrss.php


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