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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? simplepie.php

?? 簡介:一款免費開源的內容管理系統(CMS)
?? PHP
?? 第 1 頁 / 共 5 頁
字號:
							$this->data = array();						}						// If we've got a non feed_url stored (if the page isn't actually a feed, or is a redirect) use that URL.						elseif (isset($this->data['feed_url']))						{							// If the autodiscovery cache is still valid use it.							if ($cache->mtime() + $this->autodiscovery_cache_duration > time())							{								// Do not need to do feed autodiscovery yet.								if ($this->data['feed_url'] == $this->data['url'])								{									$cache->unlink();									$this->data = array();								}								else								{									$this->set_feed_url($this->data['feed_url']);									return $this->init();								}							}						}						// Check if the cache has been updated						elseif ($cache->mtime() + $this->cache_duration < time())						{							// If we have last-modified and/or etag set							if (isset($this->data['headers']['last-modified']) || isset($this->data['headers']['etag']))							{								$headers = array();								if (isset($this->data['headers']['last-modified']))								{									$headers['if-modified-since'] = $this->data['headers']['last-modified'];								}								if (isset($this->data['headers']['etag']))								{									$headers['if-none-match'] = $this->data['headers']['etag'];								}								$file =& new $this->file_class($this->feed_url, $this->timeout/10, 5, $headers, $this->useragent, $this->force_fsockopen);								if ($file->success)								{									if ($file->status_code == 304)									{										$cache->touch();										return true;									}									else									{										$headers = $file->headers;									}								}								else								{									unset($file);								}							}						}						// If the cache is still valid, just return true						else						{							return true;						}					}					// If the cache is empty, delete it					else					{						$cache->unlink();						$this->data = array();					}				}				// If we don't already have the file (it'll only exist if we've opened it to check if the cache has been modified), open it.				if (!isset($file))				{					if (SimplePie_Misc::is_a($this->file, 'SimplePie_File') && $this->file->url == $this->feed_url)					{						$file =& $this->file;					}					else					{						$file =& new $this->file_class($this->feed_url, $this->timeout, 5, null, $this->useragent, $this->force_fsockopen);					}				}				// If the file connection has an error, set SimplePie::error to that and quit				if (!$file->success)				{					$this->error = $file->error;					if (!empty($this->data))					{						return true;					}					else					{						return false;					}				}				// Check if the supplied URL is a feed, if it isn't, look for it.				$locate =& new $this->locator_class($file, $this->timeout, $this->useragent, $this->file_class, $this->max_checked_feeds);				if (!$locate->is_feed($file))				{					// We need to unset this so that if SimplePie::set_file() has been called that object is untouched					unset($file);					if ($file = $locate->find($this->autodiscovery))					{						if ($cache)						{							if (!$cache->save(array('url' => $this->feed_url, 'feed_url' => $file->url, 'build' => SIMPLEPIE_BUILD)))							{								trigger_error("$cache->name is not writeable", E_USER_WARNING);							}							$cache =& new $this->cache_class($this->cache_location, call_user_func($this->cache_name_function, $file->url), 'spc');						}						$this->feed_url = $file->url;					}					else					{						$this->error = "A feed could not be found at $this->feed_url";						SimplePie_Misc::error($this->error, E_USER_NOTICE, __FILE__, __LINE__);						return false;					}				}				$locate = null;				$headers = $file->headers;				$data = trim($file->body);				unset($file);			}			else			{				$data = $this->raw_data;			}			// First check to see if input has been overridden.			if ($this->input_encoding !== false)			{				$encoding = $this->input_encoding;			}			// Second try HTTP headers			elseif (isset($headers['content-type']) && preg_match('/;[\x09\x20]*charset=([^;]*)/i', $headers['content-type'], $charset))			{				$encoding = $charset[1];			}			// Then prolog, if at the very start of the document			elseif (preg_match("/^<\?xml[\x20\x9\xD\xA]+version([\x20\x9\xD\xA]+)?=([\x20\x9\xD\xA]+)?(\"1.0\"|'1.0'|\"1.1\"|'1.1')[\x20\x9\xD\xA]+encoding([\x20\x9\xD\xA]+)?=([\x20\x9\xD\xA]+)?(\"[A-Za-z][A-Za-z0-9._\-]*\"|'[A-Za-z][A-Za-z0-9._\-]*')([\x20\x9\xD\xA]+standalone([\x20\x9\xD\xA]+)?=([\x20\x9\xD\xA]+)?(\"(yes|no)\"|'(yes|no)'))?([\x20\x9\xD\xA]+)?\?>/", $data, $prolog))			{				$encoding = substr($prolog[6], 1, -1);			}			// UTF-32 Big Endian BOM			elseif (strpos($data, "\x0\x0\xFE\xFF") === 0)			{				$encoding = 'UTF-32be';			}			// UTF-32 Little Endian BOM			elseif (strpos($data, "\xFF\xFE\x0\x0") === 0)			{				$encoding = 'UTF-32';			}			// UTF-16 Big Endian BOM			elseif (strpos($data, "\xFE\xFF") === 0)			{				$encoding = 'UTF-16be';			}			// UTF-16 Little Endian BOM			elseif (strpos($data, "\xFF\xFE") === 0)			{				$encoding = 'UTF-16le';			}			// UTF-8 BOM			elseif (strpos($data, "\xEF\xBB\xBF") === 0)			{				$encoding = 'UTF-8';			}			// Fallback to the default (US-ASCII for text/xml, ISO-8859-1 for text/* MIME types, UTF-8 otherwise)			elseif (isset($headers['content-type']) && strtolower(SimplePie_Misc::parse_mime($headers['content-type'])) == 'text/xml')			{				$encoding = 'US-ASCII';			}			elseif (isset($headers['content-type']) && SimplePie_Misc::stripos(SimplePie_Misc::parse_mime($headers['content-type']), 'text/') === 0)			{				$encoding = 'ISO-8859-1';			}			else			{				$encoding = 'UTF-8';			}			// Change the encoding to UTF-8 (as we always use UTF-8 internally)			if ($encoding != 'UTF-8')			{				$data = SimplePie_Misc::change_encoding($data, $encoding, 'UTF-8');			}			// Strip illegal characters			//$data = SimplePie_Misc::utf8_bad_replace($data);			$parser =& new $this->parser_class();			$parser->pre_process($data, 'UTF-8');			// If we want the XML, just output that and quit			if ($this->xml_dump)			{				header('Content-type: text/xml; charset=UTF-8');				echo $data;				exit;			}			// If it's parsed fine			elseif ($parser->parse($data))			{				unset($data);				$this->data = $parser->get_data();				if (isset($this->data['child']))				{					if (isset($headers))					{						$this->data['headers'] = $headers;					}					$this->data['build'] = SIMPLEPIE_BUILD;					// Cache the file if caching is enabled					if ($cache && !$cache->save($this->data))					{						trigger_error("$cache->name is not writeable", E_USER_WARNING);					}					return true;				}				else				{					$this->error = "A feed could not be found at $this->feed_url";					SimplePie_Misc::error($this->error, E_USER_NOTICE, __FILE__, __LINE__);					return false;				}			}			// If we have an error, just set SimplePie::error to it and quit			else			{				$this->error = sprintf('XML error: %s at line %d, column %d', $parser->get_error_string(), $parser->get_current_line(), $parser->get_current_column());				SimplePie_Misc::error($this->error, E_USER_NOTICE, __FILE__, __LINE__);				return false;			}		}		elseif (!empty($this->multifeed_url))		{			$i = 0;			$success = 0;			$this->multifeed_objects = array();			foreach ($this->multifeed_url as $url)			{				if (SIMPLEPIE_PHP5)				{					// This keyword needs to defy coding standards for PHP4 compatibility					$this->multifeed_objects[$i] = clone($this);				}				else				{					$this->multifeed_objects[$i] = $this;				}				$this->multifeed_objects[$i]->set_feed_url($url);				$success |= $this->multifeed_objects[$i]->init();				$i++;			}			return (bool) $success;		}		else		{			return false;		}	}	/**	 * Return the error message for the occured error	 *	 * @access public	 * @return string Error message	 */	function error()	{		return $this->error;	}	function get_encoding()	{		return $this->sanitize->output_encoding;	}	function handle_content_type($mime = 'text/html')	{		if (!headers_sent())		{			$header = "Content-type: $mime;";			if ($this->get_encoding())			{				$header .= ' charset=' . $this->get_encoding();			}			else			{				$header .= ' charset=UTF-8';			}			header($header);		}	}	function get_type()	{		if (!isset($this->data['type']))		{			$this->data['type'] = SIMPLEPIE_TYPE_ALL;			if (isset($this->data['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['feed']))			{				$this->data['type'] &= SIMPLEPIE_TYPE_ATOM_10;			}			elseif (isset($this->data['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['feed']))			{				$this->data['type'] &= SIMPLEPIE_TYPE_ATOM_03;			}			elseif (isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF']))			{				if (isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_10]['channel'])				|| isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_10]['image'])				|| isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_10]['item'])				|| isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_10]['textinput']))				{					$this->data['type'] &= SIMPLEPIE_TYPE_RSS_10;				}				if (isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_090]['channel'])				|| isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_090]['image'])				|| isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_090]['item'])				|| isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_090]['textinput']))				{					$this->data['type'] &= SIMPLEPIE_TYPE_RSS_090;				}			}			elseif (isset($this->data['child']['']['rss']))			{				$this->data['type'] &= SIMPLEPIE_TYPE_RSS_ALL;				if (isset($this->data['child']['']['rss'][0]['attribs']['']['version']))				{					switch (trim($this->data['child']['']['rss'][0]['attribs']['']['version']))					{						case '0.91':							$this->data['type'] &= SIMPLEPIE_TYPE_RSS_091;							if (isset($this->data['child']['']['rss'][0]['child']['']['skiphours']['hour'][0]['data']))							{								switch (trim($this->data['child']['']['rss'][0]['child']['']['skiphours']['hour'][0]['data']))								{									case '0':										$this->data['type'] &= SIMPLEPIE_TYPE_RSS_091_NETSCAPE;										break;									case '24':										$this->data['type'] &= SIMPLEPIE_TYPE_RSS_091_USERLAND;										break;								}							}							break;						case '0.92':							$this->data['type'] &= SIMPLEPIE_TYPE_RSS_092;							break;						case '0.93':							$this->data['type'] &= SIMPLEPIE_TYPE_RSS_093;							break;						case '0.94':							$this->data['type'] &= SIMPLEPIE_TYPE_RSS_094;							break;						case '2.0':							$this->data['type'] &= SIMPLEPIE_TYPE_RSS_20;							break;					}				}			}			else			{				$this->data['type'] = SIMPLEPIE_TYPE_NONE;			}		}		return $this->data['type'];	}	/**	 * Returns the URL for the favicon of the feed's website.	 *	 * @access public	 * @since 1.0	 */	function get_favicon()	{		if ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'icon'))		{			return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($return[0]));		}		elseif (($url = $this->get_link()) !== null && preg_match('/^http(s)?:\/\//i', $url))		{			$favicon = SimplePie_Misc::absolutize_url('/favicon.ico', $url);			if ($this->cache && $this->favicon_handler)			{				$cache =& new $this->cache_class($this->cache_location, call_user_func($this->cache_name_function, $favicon), 'spi');				if ($cache->load())				{					return $this->sanitize($this->favicon_handler . rawurlencode($favicon), SIMPLEPIE_CONSTRUCT_IRI);				}				else				{					$file =& new $this->file_class($favicon, $this->timeout / 10, 5, array('X-FORWARDED-FOR' => $_SERVER['REMOTE_ADDR']), $this->useragent, $this->force_fsockopen);					if ($file->success && ($file->status_code == 200 || ($file->status_code > 206 && $file->status_code < 300)) && strlen($file->body) > 0)					{						if ($cache->save(array('headers' => $file->headers, 'body' => $file->body)))						{							return $this->sanitize($this->favicon_handler . rawurlencode($favicon), SIMPLEPIE_CONSTRUCT_IRI);						}						else						{							trigger_error("$cache->name is not writeable", E_USER_WARNING);							return $this->sanitize($favicon, SIMPLEPIE_CONSTRUCT_IRI);						}					}				}			}			else			{				return $this->sanitize($favicon, SIMPLEPIE_CONSTRUCT_IRI);			}		}		return false;	}	/**	 * @todo If we have a perm redirect we should return the new URL	 * @todo When we make the above change, let's support <itunes:new-feed-url> as well	 * @todo Also, |atom:link|@rel=self	 */	function subscribe_url()	{		if ($this->feed_url !== null)		{			return $this->sanitize($this->feed_url, SIMPLEPIE_CONSTRUCT_IRI);		}		else		{			return null;		}	}	function subscribe_feed()	{		if ($this->feed_url !== null)		{			return $this->sanitize(SimplePie_Misc::fix_protocol($this->feed_url, 2), SIMPLEPIE_CONSTRUCT_IRI);		}		else		{			return null;		}	}	function subscribe_outlook()	{		if ($this->feed_url !== null)		{			return 'outlook' . $this->sanitize(SimplePie_Misc::fix_protocol($this->feed_url, 2), SIMPLEPIE_CONSTRUCT_IRI);		}		else		{			return null;		}	}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
视频一区国产视频| 91社区在线播放| 波多野结衣中文一区| 在线观看av一区| 久久久久高清精品| 亚洲成人777| av网站免费线看精品| 日韩欧美国产一区二区在线播放 | 亚洲日本一区二区| 韩国一区二区视频| 欧美日韩一区二区电影| 国产精品福利电影一区二区三区四区| 秋霞电影一区二区| 欧美视频一区在线| 亚洲人成小说网站色在线| 国产一区二区0| 日韩免费在线观看| 三级欧美在线一区| 91国偷自产一区二区三区成为亚洲经典 | 国产在线一区观看| 欧美精品亚洲一区二区在线播放| 国产精品三级久久久久三级| 极品瑜伽女神91| 日韩欧美卡一卡二| 蜜桃视频一区二区三区 | 高清beeg欧美| 日韩视频123| 婷婷久久综合九色综合绿巨人| 99麻豆久久久国产精品免费| 欧美激情一区三区| 粉嫩嫩av羞羞动漫久久久| 2021中文字幕一区亚洲| 黄色成人免费在线| 精品国产三级电影在线观看| 美国精品在线观看| 欧美成人a视频| 久久99精品久久只有精品| 日韩丝袜情趣美女图片| 日韩和的一区二区| 777奇米四色成人影色区| 日韩激情一区二区| 日韩一区二区三区观看| 另类小说色综合网站| 精品区一区二区| 国产一区欧美日韩| 中文字幕欧美激情一区| av男人天堂一区| 一区二区国产盗摄色噜噜| 欧美性大战久久久久久久蜜臀| 午夜精品在线视频一区| 91精品国产高清一区二区三区蜜臀| 日本美女一区二区三区视频| 日韩欧美高清一区| 国产成人在线观看| 亚洲精品欧美综合四区| 欧美日韩1234| 韩国女主播成人在线| 中日韩免费视频中文字幕| 日本电影欧美片| 日本不卡123| 国产精品色婷婷| 欧美日韩国产精品成人| 国模大尺度一区二区三区| 国产精品白丝在线| 欧美精品1区2区3区| 久久99精品国产.久久久久久| 国产欧美一区二区精品仙草咪 | 亚洲欧洲99久久| 欧美午夜一区二区| 久草精品在线观看| 亚洲色图欧美在线| 精品国免费一区二区三区| youjizz国产精品| 日韩成人伦理电影在线观看| 亚洲国产精品成人综合色在线婷婷| 91在线视频观看| 精品一区二区三区久久| 亚洲精品ww久久久久久p站| 91精品国产综合久久蜜臀| 成人一区二区在线观看| 日韩经典中文字幕一区| 国产精品成人免费| 2020日本不卡一区二区视频| 色94色欧美sute亚洲线路一久| 激情综合网天天干| 性感美女久久精品| 亚洲色图.com| 国产欧美视频一区二区三区| 538在线一区二区精品国产| aaa国产一区| 国产精品自拍三区| 免费黄网站欧美| 一区二区三区免费观看| 国产欧美日韩另类一区| 日韩一区二区精品| 欧美在线短视频| av在线一区二区三区| 国产一区二区调教| 蜜臀精品一区二区三区在线观看| 亚洲精品亚洲人成人网| 中文字幕在线免费不卡| 国产区在线观看成人精品| 日韩欧美精品三级| 欧美一级精品在线| 欧美精品123区| 欧美丰满一区二区免费视频| 色老头久久综合| 91麻豆精东视频| eeuss鲁片一区二区三区在线观看| 九九九久久久精品| 裸体健美xxxx欧美裸体表演| 日韩在线卡一卡二| 日日夜夜免费精品视频| 婷婷一区二区三区| 日本人妖一区二区| 秋霞午夜av一区二区三区| 肉色丝袜一区二区| 日本人妖一区二区| 麻豆精品精品国产自在97香蕉 | 国产一区二区视频在线| 激情国产一区二区| 国内精品国产成人| 国产成人av自拍| 99久久免费视频.com| 91美女福利视频| 欧美视频一区在线| 7777精品伊人久久久大香线蕉经典版下载| 欧美性受极品xxxx喷水| 欧美日韩大陆一区二区| 欧美一区二区三区在线| 欧美va在线播放| 欧美经典一区二区| 1区2区3区国产精品| 亚洲国产aⅴ天堂久久| 日日夜夜免费精品| 国产中文字幕一区| 成人影视亚洲图片在线| 欧美中文字幕亚洲一区二区va在线| 欧美性色黄大片| 日韩精品一区二区三区在线播放 | 欧美亚洲动漫精品| 欧美一区二区观看视频| 久久久久九九视频| 亚洲视频一二区| 日本不卡一二三区黄网| 国产一区二区看久久| 色综合久久综合| 91麻豆精品国产自产在线| 久久久美女毛片| 一区二区激情视频| 狠狠久久亚洲欧美| 一本色道久久综合亚洲aⅴ蜜桃| 精品视频在线看| 久久精品欧美日韩精品| 亚洲综合在线视频| 韩日精品视频一区| 欧美视频中文一区二区三区在线观看| 欧美成人一级视频| 亚洲人成网站精品片在线观看| 日韩高清一级片| 不卡的电视剧免费网站有什么| 欧美日韩国产高清一区二区三区 | 3751色影院一区二区三区| 国产女同互慰高潮91漫画| 亚洲乱码国产乱码精品精的特点 | 国产高清无密码一区二区三区| 欧洲亚洲精品在线| 国产欧美日韩中文久久| 五月天国产精品| 97精品视频在线观看自产线路二| 91精品国产乱码久久蜜臀| 亚洲欧美色图小说| 国产精品亚洲人在线观看| 欧美丰满一区二区免费视频| 中文字幕亚洲一区二区va在线| 美女视频黄 久久| 欧美色窝79yyyycom| 中文字幕一区二区三中文字幕| 精品在线观看视频| 欧美美女直播网站| 一区二区三区中文字幕在线观看| 国产一区二区三区免费播放| 在线不卡中文字幕| 亚洲午夜av在线| 色妞www精品视频| 中文字幕欧美区| 国产不卡高清在线观看视频| 欧美xxx久久| 蜜臀av一级做a爰片久久| 欧美日韩精品二区第二页| 亚洲精品高清视频在线观看| 成人福利视频在线| 国产精品丝袜久久久久久app| 久久99精品视频| 精品精品国产高清一毛片一天堂| 午夜视频一区二区三区| 欧美日韩在线播| 婷婷国产v国产偷v亚洲高清| 91激情五月电影| 亚洲一区二区三区四区中文字幕|