亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? simplepie.php

?? 簡介:一款免費開源的內(nèi)容管理系統(tǒng)(CMS)
?? PHP
?? 第 1 頁 / 共 5 頁
字號:
	 * @access private	 */	var $autodiscovery = SIMPLEPIE_LOCATOR_ALL;	/**	 * @var string Class used for caching feeds	 * @see SimplePie::set_cache_class()	 * @access private	 */	var $cache_class = 'SimplePie_Cache';	/**	 * @var string Class used for locating feeds	 * @see SimplePie::set_locator_class()	 * @access private	 */	var $locator_class = 'SimplePie_Locator';	/**	 * @var string Class used for parsing feeds	 * @see SimplePie::set_parser_class()	 * @access private	 */	var $parser_class = 'SimplePie_Parser';	/**	 * @var string Class used for fetching feeds	 * @see SimplePie::set_file_class()	 * @access private	 */	var $file_class = 'SimplePie_File';	/**	 * @var string Class used for items	 * @see SimplePie::set_item_class()	 * @access private	 */	var $item_class = 'SimplePie_Item';	/**	 * @var string Class used for authors	 * @see SimplePie::set_author_class()	 * @access private	 */	var $author_class = 'SimplePie_Author';	/**	 * @var string Class used for categories	 * @see SimplePie::set_category_class()	 * @access private	 */	var $category_class = 'SimplePie_Category';	/**	 * @var string Class used for enclosures	 * @see SimplePie::set_enclosures_class()	 * @access private	 */	var $enclosure_class = 'SimplePie_Enclosure';	/**	 * @var string Class used for Media RSS <media:text> captions	 * @see SimplePie::set_caption_class()	 * @access private	 */	var $caption_class = 'SimplePie_Caption';	/**	 * @var string Class used for Media RSS <media:copyright>	 * @see SimplePie::set_copyright_class()	 * @access private	 */	var $copyright_class = 'SimplePie_Copyright';	/**	 * @var string Class used for Media RSS <media:credit>	 * @see SimplePie::set_credit_class()	 * @access private	 */	var $credit_class = 'SimplePie_Credit';	/**	 * @var string Class used for Media RSS <media:rating>	 * @see SimplePie::set_rating_class()	 * @access private	 */	var $rating_class = 'SimplePie_Rating';	/**	 * @var string Class used for Media RSS <media:restriction>	 * @see SimplePie::set_restriction_class()	 * @access private	 */	var $restriction_class = 'SimplePie_Restriction';	/**	 * @var mixed Set javascript query string parameter (false, or	 * anything type-cast to false, disables this feature)	 * @see SimplePie::set_javascript()	 * @access private	 */	var $javascript = 'js';	/**	 * @var int Maximum number of feeds to check with autodiscovery	 * @see SimplePie::set_max_checked_feeds()	 * @access private	 */	var $max_checked_feeds = 10;	/**	 * @var string Web-accessible path to the handler_favicon.php file.	 * @see SimplePie::set_favicon_handler()	 * @access private	 */	var $favicon_handler = '';	/**	 * @var string Web-accessible path to the handler_image.php file.	 * @see SimplePie::set_image_handler()	 * @access private	 */	var $image_handler = '';	/**	 * @var array Stores the URLs when multiple feeds are being initialized.	 * @see SimplePie::set_feed_url()	 * @access private	 */	var $multifeed_url = array();	/**	 * @var array Stores SimplePie objects when multiple feeds initialized.	 * @access private	 */	var $multifeed_objects = array();	/**	 * @var array Stores the get_object_vars() array for use with multifeeds.	 * @see SimplePie::set_feed_url()	 * @access private	 */	var $config_settings = null;	/**	 * @var array Stores the default attributes to be stripped by strip_attributes().	 * @see SimplePie::strip_attributes()	 * @access private	 */	var $strip_attributes = array('bgsound', 'class', 'expr', 'id', 'style', 'onclick', 'onerror', 'onfinish', 'onmouseover', 'onmouseout', 'onfocus', 'onblur', 'lowsrc', 'dynsrc');	/**	 * @var array Stores the default tags to be stripped by strip_htmltags().	 * @see SimplePie::strip_htmltags()	 * @access private	 */	var $strip_htmltags = array('base', 'blink', 'body', 'doctype', 'embed', 'font', 'form', 'frame', 'frameset', 'html', 'iframe', 'input', 'marquee', 'meta', 'noscript', 'object', 'param', 'script', 'style');	/**	 * The SimplePie class contains feed level data and options	 *	 * There are two ways that you can create a new SimplePie object. The first	 * is by passing a feed URL as a parameter to the SimplePie constructor	 * (as well as optionally setting the cache location and cache expiry). This	 * will initialise the whole feed with all of the default settings, and you	 * can begin accessing methods and properties immediately.	 *	 * The second way is to create the SimplePie object with no parameters	 * at all. This will enable you to set configuration options. After setting	 * them, you must initialise the feed using $feed->init(). At that point the	 * object's methods and properties will be available to you. This format is	 * what is used throughout this documentation.	 *	 * @access public	 * @since 1.0 Preview Release	 * @param string $feed_url This is the URL you want to parse.	 * @param string $cache_location This is where you want the cache to be stored.	 * @param int $cache_duration This is the number of seconds that you want to store the cache file for.	 */	function SimplePie($feed_url = null, $cache_location = null, $cache_duration = null)	{		// Other objects, instances created here so we can set options on them		$this->sanitize =& new SimplePie_Sanitize;		// Set options if they're passed to the constructor		if ($cache_location !== null)		{			$this->set_cache_location($cache_location);		}		if ($cache_duration !== null)		{			$this->set_cache_duration($cache_duration);		}		// Only init the script if we're passed a feed URL		if ($feed_url !== null)		{			$this->set_feed_url($feed_url);			$this->init();		}	}	/**	 * Used for converting object to a string	 */	function __toString()	{		return md5(serialize($this->data));	}	/**	 * This is the URL of the feed you want to parse.	 *	 * This allows you to enter the URL of the feed you want to parse, or the	 * website you want to try to use auto-discovery on. This takes priority	 * over any set raw data.	 *	 * You can set multiple feeds to mash together by passing an array instead	 * of a string for the $url. Remember that with each additional feed comes	 * additional processing and resources.	 *	 * @access public	 * @since 1.0 Preview Release	 * @param mixed $url This is the URL (or array of URLs) that you want to parse.	 * @see SimplePie::set_raw_data()	 */	function set_feed_url($url)	{		if (is_array($url))		{			$this->multifeed_url = array();			foreach ($url as $value)			{				$this->multifeed_url[] = SimplePie_Misc::fix_protocol($value, 1);			}		}		else		{			$this->feed_url = SimplePie_Misc::fix_protocol($url, 1);		}	}	/**	 * Provides an instance of SimplePie_File to use as a feed	 *	 * @access public	 * @param object &$file Instance of SimplePie_File (or subclass)	 * @return bool True on success, false on failure	 */	function set_file(&$file)	{		if (SimplePie_Misc::is_a($file, 'SimplePie_File'))		{			$this->feed_url = $file->url;			$this->file =& $file;			return true;		}		return false;	}	/**	 * Allows you to use a string of RSS/Atom data instead of a remote feed.	 *	 * If you have a feed available as a string in PHP, you can tell SimplePie	 * to parse that data string instead of a remote feed. Any set feed URL	 * takes precedence.	 *	 * @access public	 * @since 1.0 Beta 3	 * @param string $data RSS or Atom data as a string.	 * @see SimplePie::set_feed_url()	 */	function set_raw_data($data)	{		$this->raw_data = trim($data);	}	/**	 * Allows you to override the default timeout for fetching remote feeds.	 *	 * This allows you to change the maximum time the feed's server to respond	 * and send the feed back.	 *	 * @access public	 * @since 1.0 Beta 3	 * @param int $timeout The maximum number of seconds to spend waiting to retrieve a feed.	 */	function set_timeout($timeout = 10)	{		$this->timeout = (int) $timeout;	}	/**	 * Forces SimplePie to use fsockopen() instead of the preferred cURL	 * functions.	 *	 * @access public	 * @since 1.0 Beta 3	 * @param bool $enable Force fsockopen() to be used	 */	function force_fsockopen($enable = false)	{		$this->force_fsockopen = (bool) $enable;	}	/**	 * Outputs the raw XML content of the feed, after it has gone through	 * SimplePie's filters.	 *	 * Used only for debugging, this function will output the XML content as	 * text/xml. When SimplePie reads in a feed, it does a bit of cleaning up	 * before trying to parse it. Many parts of the feed are re-written in	 * memory, and in the end, you have a parsable feed. XML dump shows you the	 * actual XML that SimplePie tries to parse, which may or may not be very	 * different from the original feed.	 *	 * @access public	 * @since 1.0 Preview Release	 * @param bool $enable Enable XML dump	 */	function enable_xml_dump($enable = false)	{		$this->xml_dump = (bool) $enable;	}	/**	 * Enables/disables caching in SimplePie.	 *	 * This option allows you to disable caching all-together in SimplePie.	 * However, disabling the cache can lead to longer load times.	 *	 * @access public	 * @since 1.0 Preview Release	 * @param bool $enable Enable caching	 */	function enable_cache($enable = true)	{		$this->cache = (bool) $enable;	}	/**	 * Set the length of time (in seconds) that the contents of a feed	 * will be cached.	 *	 * @access public	 * @param int $seconds The feed content cache duration.	 */	function set_cache_duration($seconds = 3600)	{		$this->cache_duration = (int) $seconds;	}	/**	 * Set the length of time (in seconds) that the autodiscovered feed	 * URL will be cached.	 *	 * @access public	 * @param int $seconds The autodiscovered feed URL cache duration.	 */	function set_autodiscovery_cache_duration($seconds = 604800)	{		$this->autodiscovery_cache_duration = (int) $seconds;	}	/**	 * Set the file system location where the cached files should be stored.	 *	 * @access public	 * @param string $location The file system location.	 */	function set_cache_location($location = './cache')	{		$this->cache_location = (string) $location;	}	/**	 * Determines whether feed items should be sorted into reverse chronological order.	 *	 * @access public	 * @param bool $enable Sort as reverse chronological order.	 */	function enable_order_by_date($enable = true)	{		$this->order_by_date = (bool) $enable;	}	/**	 * Allows you to override the character encoding reported by the feed.	 *	 * @access public	 * @param string $encoding Character encoding.	 */	function set_input_encoding($encoding = false)	{		if ($encoding)		{			$this->input_encoding = (string) $encoding;		}		else		{			$this->input_encoding = false;		}	}	/**	 * Set how much feed autodiscovery to do	 *	 * @access public	 * @see SIMPLEPIE_LOCATOR_NONE	 * @see SIMPLEPIE_LOCATOR_AUTODISCOVERY	 * @see SIMPLEPIE_LOCATOR_LOCAL_EXTENSION	 * @see SIMPLEPIE_LOCATOR_LOCAL_BODY	 * @see SIMPLEPIE_LOCATOR_REMOTE_EXTENSION	 * @see SIMPLEPIE_LOCATOR_REMOTE_BODY	 * @see SIMPLEPIE_LOCATOR_ALL	 * @param int $level Feed Autodiscovery Level (level can be a	 * combination of the above constants, see bitwise OR operator)	 */	function set_autodiscovery_level($level = SIMPLEPIE_LOCATOR_ALL)	{		$this->autodiscovery = (int) $level;	}	/**	 * Allows you to change which class SimplePie uses for caching.	 * Useful when you are overloading or extending SimplePie's default classes.	 *	 * @access public	 * @param string $class Name of custom class.	 * @link http://php.net/manual/en/keyword.extends.php PHP4 extends documentation	 * @link http://php.net/manual/en/language.oop5.basic.php#language.oop5.basic.extends PHP5 extends documentation	 */	function set_cache_class($class = 'SimplePie_Cache')	{		if (SimplePie_Misc::is_subclass_of($class, 'SimplePie_Cache'))		{			$this->cache_class = $class;			return true;		}		return false;	}	/**	 * Allows you to change which class SimplePie uses for auto-discovery.	 * Useful when you are overloading or extending SimplePie's default classes.	 *	 * @access public	 * @param string $class Name of custom class.	 * @link http://php.net/manual/en/keyword.extends.php PHP4 extends documentation	 * @link http://php.net/manual/en/language.oop5.basic.php#language.oop5.basic.extends PHP5 extends documentation	 */	function set_locator_class($class = 'SimplePie_Locator')	{		if (SimplePie_Misc::is_subclass_of($class, 'SimplePie_Locator'))		{			$this->locator_class = $class;			return true;		}		return false;	}	/**	 * Allows you to change which class SimplePie uses for XML parsing.	 * Useful when you are overloading or extending SimplePie's default classes.	 *	 * @access public	 * @param string $class Name of custom class.

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
麻豆国产一区二区| 国产视频一区在线观看 | 成人av电影观看| 国产夜色精品一区二区av| 国产精品1区2区3区在线观看| 欧美激情在线观看视频免费| 成人av资源站| 亚洲免费在线电影| 欧美精品乱码久久久久久| 日本最新不卡在线| 久久久精品2019中文字幕之3| 国产不卡在线视频| 亚洲免费三区一区二区| 在线成人午夜影院| 国产一区二区三区四| 国产精品久99| 欧美日韩亚洲综合一区| 久久精品国产久精国产| 国产精品午夜春色av| 日本高清不卡aⅴ免费网站| 丝瓜av网站精品一区二区| 精品日韩欧美在线| www.视频一区| 丝袜诱惑亚洲看片| 国产亚洲精品精华液| 色综合欧美在线| 日韩av二区在线播放| 国产精品色哟哟网站| 欧美日韩精品一区二区三区蜜桃| 久久99热狠狠色一区二区| 亚洲欧洲精品天堂一级| 91精品国产综合久久蜜臀| 国产99一区视频免费| 香蕉成人伊视频在线观看| 国产色产综合产在线视频| 欧美日韩精品一区二区| 国产mv日韩mv欧美| 日韩va亚洲va欧美va久久| 国产精品九色蝌蚪自拍| 欧美电视剧在线看免费| 色婷婷综合五月| 国产风韵犹存在线视精品| 亚洲一区免费观看| 国产精品视频yy9299一区| 4hu四虎永久在线影院成人| eeuss鲁片一区二区三区在线观看| 日韩国产欧美三级| 一卡二卡欧美日韩| 日本一区二区三级电影在线观看| 欧美丰满高潮xxxx喷水动漫 | 国产成人av一区| 日本三级亚洲精品| 夜夜精品视频一区二区| 国产精品人成在线观看免费 | 亚洲精品写真福利| 国产精品网曝门| 欧美精品一区二区久久久| 欧美日韩中文字幕一区| 91社区在线播放| 国产jizzjizz一区二区| 国产在线视频精品一区| 日日夜夜免费精品| 亚洲.国产.中文慕字在线| 亚洲欧美一区二区在线观看| 国产色产综合色产在线视频| 精品国产一区二区三区久久影院| 欧美精品国产精品| 欧美裸体一区二区三区| 在线视频一区二区三| 色综合久久中文字幕| 99热精品一区二区| 国产v日产∨综合v精品视频| 国产传媒日韩欧美成人| 国产美女精品人人做人人爽| 狠狠色丁香婷婷综合久久片| 美女精品一区二区| 九九热在线视频观看这里只有精品| 偷拍一区二区三区四区| 视频在线在亚洲| 午夜精品久久久久久| 一区二区在线观看视频在线观看| 亚洲天堂福利av| 亚洲精品菠萝久久久久久久| 亚洲一级二级三级| 午夜精品久久一牛影视| 日本亚洲电影天堂| 激情综合色综合久久综合| 国内外精品视频| 国产大陆亚洲精品国产| 99精品桃花视频在线观看| a级高清视频欧美日韩| 色婷婷精品大在线视频| 欧美日韩国产一区| 日韩欧美一区电影| 国产亚洲短视频| 中文字幕一区av| 亚洲午夜久久久久中文字幕久| 天堂va蜜桃一区二区三区| 久久成人免费电影| 粉嫩绯色av一区二区在线观看| 99国产麻豆精品| 欧美偷拍一区二区| 精品成人一区二区三区四区| 国产精品蜜臀av| 亚洲一级片在线观看| 久久精品国产亚洲一区二区三区| 国产传媒久久文化传媒| 欧洲一区在线观看| 精品少妇一区二区三区在线播放| 国产日产亚洲精品系列| 亚洲欧洲综合另类在线| 琪琪久久久久日韩精品| 高清日韩电视剧大全免费| 在线观看成人小视频| 精品美女在线播放| 亚洲色图都市小说| 久久精品二区亚洲w码| 成人福利视频网站| 欧美一级午夜免费电影| 国产精品久久久久一区| 热久久国产精品| 97精品久久久久中文字幕| 欧美一级xxx| 亚洲欧美日韩成人高清在线一区| 天堂午夜影视日韩欧美一区二区| 国产成a人亚洲| 91麻豆精品国产自产在线观看一区 | 午夜精品一区二区三区免费视频| 国产在线视频一区二区| 欧美日韩另类一区| 国产精品色噜噜| 精品一区二区三区香蕉蜜桃| 91精品福利视频| 日本一区二区三区视频视频| 日韩国产一二三区| 欧洲精品在线观看| 国产精品系列在线| 狠狠色综合色综合网络| 在线电影欧美成精品| 一区二区三区在线看| 成人精品一区二区三区四区| 欧美xxx久久| 五月天亚洲婷婷| 国产午夜亚洲精品午夜鲁丝片| 亚洲成人精品一区| 99亚偷拍自图区亚洲| 亚洲国产电影在线观看| 激情综合亚洲精品| 日韩欧美一卡二卡| 日韩精品乱码av一区二区| 欧美亚洲精品一区| 亚洲精品国久久99热| 成人久久视频在线观看| 国产亚洲欧美一级| 国产做a爰片久久毛片| 日韩欧美电影在线| 美女在线观看视频一区二区| 欧美区视频在线观看| 亚洲国产精品麻豆| 在线视频综合导航| 一区二区三区**美女毛片| 91在线码无精品| 亚洲欧美日本在线| 一本色道亚洲精品aⅴ| 国产精品视频观看| av激情成人网| 亚洲欧美日本韩国| 日本精品视频一区二区| 亚洲乱码国产乱码精品精小说 | 精品国产亚洲在线| 精品一区二区在线观看| 欧美成人一区二区三区在线观看 | 蜜乳av一区二区三区| 日韩欧美不卡一区| 国产一区中文字幕| 欧美激情一区二区三区四区| 成人久久18免费网站麻豆| 成人欧美一区二区三区1314| 91久久线看在观草草青青| 亚洲一区二区高清| 欧美一区二区精品久久911| 蜜臀av一区二区在线观看| 欧美精品一区二区三区高清aⅴ| 韩国视频一区二区| 中文字幕av免费专区久久| 色婷婷激情久久| 亚洲va中文字幕| 欧美白人最猛性xxxxx69交| 大陆成人av片| 一区二区三区四区不卡在线| 欧美日韩不卡一区| 久久66热re国产| 国产精品另类一区| 欧美亚洲日本一区| 久久国产免费看| 国产精品不卡在线观看| 欧美三级资源在线| 国产精品影视在线| 亚洲综合丝袜美腿| 精品国产伦一区二区三区观看体验 |