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

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

?? xajax.inc.php

?? 這是一個joomla系統(tǒng)的插件, 這是一個joomla系統(tǒng)的插件
?? PHP
?? 第 1 頁 / 共 3 頁
字號:
	 * 	 * @param string an optional argument containing the full server file path	 *               of xajax.js.	 */	function autoCompressJavascript($sJsFullFilename=NULL)	{			$sJsFile = "xajax_js/xajax.js";				if ($sJsFullFilename) {			$realJsFile = $sJsFullFilename;		}		else {			$realPath = realpath(dirname(__FILE__));			$realJsFile = $realPath . "/". $sJsFile;		}		// Create a compressed file if necessary		if (!file_exists($realJsFile)) {			$srcFile = str_replace(".js", "_uncompressed.js", $realJsFile);			if (!file_exists($srcFile)) {				trigger_error("The xajax uncompressed Javascript file could not be found in the <b>" . dirname($realJsFile) . "</b> folder. Error ", E_USER_ERROR);				}			require(dirname(__FILE__)."/xajaxCompress.php");			$javaScript = implode('', file($srcFile));			$compressedScript = xajaxCompressJavascript($javaScript);			$fH = @fopen($realJsFile, "w");			if (!$fH) {				trigger_error("The xajax compressed javascript file could not be written in the <b>" . dirname($realJsFile) . "</b> folder. Error ", E_USER_ERROR);			}			else {				fwrite($fH, $compressedScript);				fclose($fH);			}		}	}		/**	 * Returns the current URL based upon the SERVER vars.	 * 	 * @access private	 * @return string	 */	function _detectURI() {		$aURL = array();		// Try to get the request URL		if (!empty($_SERVER['REQUEST_URI'])) {			$aURL = parse_url($_SERVER['REQUEST_URI']);		}		// Fill in the empty values		if (empty($aURL['scheme'])) {			if (!empty($_SERVER['HTTP_SCHEME'])) {				$aURL['scheme'] = $_SERVER['HTTP_SCHEME'];			} else {				$aURL['scheme'] = (!empty($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) != 'off') ? 'https' : 'http';			}		}		if (empty($aURL['host'])) {			if (!empty($_SERVER['HTTP_HOST'])) {				if (strpos($_SERVER['HTTP_HOST'], ':') > 0) {					list($aURL['host'], $aURL['port']) = explode(':', $_SERVER['HTTP_HOST']);				} else {					$aURL['host'] = $_SERVER['HTTP_HOST'];				}			} else if (!empty($_SERVER['SERVER_NAME'])) {				$aURL['host'] = $_SERVER['SERVER_NAME'];			} else {				print "xajax Error: xajax failed to automatically identify your Request URI.";				print "Please set the Request URI explicitly when you instantiate the xajax object.";				exit();			}		}		if (empty($aURL['port']) && !empty($_SERVER['SERVER_PORT'])) {			$aURL['port'] = $_SERVER['SERVER_PORT'];		}		if (empty($aURL['path'])) {			if (!empty($_SERVER['PATH_INFO'])) {				$sPath = parse_url($_SERVER['PATH_INFO']);			} else {				$sPath = parse_url($_SERVER['PHP_SELF']);			}			$aURL['path'] = $sPath['path'];			unset($sPath);		}		if (!empty($aURL['query'])) {			$aURL['query'] = '?'.$aURL['query'];		}		// Build the URL: Start with scheme, user and pass		$sURL = $aURL['scheme'].'://';		if (!empty($aURL['user'])) {			$sURL.= $aURL['user'];			if (!empty($aURL['pass'])) {				$sURL.= ':'.$aURL['pass'];			}			$sURL.= '@';		}		// Add the host		$sURL.= $aURL['host'];		// Add the port if needed		if (!empty($aURL['port']) && (($aURL['scheme'] == 'http' && $aURL['port'] != 80) || ($aURL['scheme'] == 'https' && $aURL['port'] != 443))) {			$sURL.= ':'.$aURL['port'];		}		// Add the path and the query string		$sURL.= $aURL['path'].@$aURL['query'];		// Clean up		unset($aURL);		return $sURL;	}		/**	 * Returns true if the function name is associated with an object callback,	 * false if not.	 * 	 * @param string the name of the function	 * @access private	 * @return boolean	 */	function _isObjectCallback($sFunction)	{		if (array_key_exists($sFunction, $this->aObjects)) return true;		return false;	}		/**	 * Returns true if the function or object callback can be called, false if	 * not.	 * 	 * @param string the name of the function	 * @access private	 * @return boolean	 */	function _isFunctionCallable($sFunction)	{		if ($this->_isObjectCallback($sFunction)) {			if (is_object($this->aObjects[$sFunction][0])) {				return method_exists($this->aObjects[$sFunction][0], $this->aObjects[$sFunction][1]);			}			else {				return is_callable($this->aObjects[$sFunction]);			}		}		else {			return function_exists($sFunction);		}		}		/**	 * Calls the function, class method, or object method with the supplied	 * arguments.	 * 	 * @param string the name of the function	 * @param array  arguments to pass to the function	 * @access private	 * @return mixed the output of the called function or method	 */	function _callFunction($sFunction, $aArgs)	{		if ($this->_isObjectCallback($sFunction)) {			$mReturn = call_user_func_array($this->aObjects[$sFunction], $aArgs);		}		else {			$mReturn = call_user_func_array($sFunction, $aArgs);		}		return $mReturn;	}		/**	 * Generates the Javascript wrapper for the specified PHP function.	 * 	 * @param string the name of the function	 * @param mixed  the request type	 * @access private	 * @return string	 */	function _wrap($sFunction,$sRequestType=XAJAX_POST)	{		$js = "function ".$this->sWrapperPrefix."$sFunction(){return xajax.call(\"$sFunction\", arguments, ".$sRequestType.",\"".$this->sWrapperPrefix."\");}\n";				return $js;	}	/**	 * Takes a string containing xajax xjxobj XML or xjxquery XML and builds an	 * array representation of it to pass as an argument to the PHP function	 * being called.	 * 	 * @param string the root tag of the XML	 * @param string XML to convert	 * @access private	 * @return array	 */	function _xmlToArray($rootTag, $sXml)	{		$aArray = array();		$sXml = str_replace("<$rootTag>","<$rootTag>|~|",$sXml);		$sXml = str_replace("</$rootTag>","</$rootTag>|~|",$sXml);		$sXml = str_replace("<e>","<e>|~|",$sXml);		$sXml = str_replace("</e>","</e>|~|",$sXml);		$sXml = str_replace("<k>","<k>|~|",$sXml);		$sXml = str_replace("</k>","|~|</k>|~|",$sXml);		$sXml = str_replace("<v>","<v>|~|",$sXml);		$sXml = str_replace("</v>","|~|</v>|~|",$sXml);		$sXml = str_replace("<q>","<q>|~|",$sXml);		$sXml = str_replace("</q>","|~|</q>|~|",$sXml);				$this->aObjArray = explode("|~|",$sXml);				$this->iPos = 0;		$aArray = $this->_parseObjXml($rootTag);        		return $aArray;	}		/**	 * A recursive function that generates an array from the contents of	 * $this->aObjArray.	 * 	 * @param string the root tag of the XML	 * @access private	 * @return array	 */	function _parseObjXml($rootTag)	{		$aArray = array();				if ($rootTag == "xjxobj")		{			while(!stristr($this->aObjArray[$this->iPos],"</xjxobj>"))			{				$this->iPos++;				if(stristr($this->aObjArray[$this->iPos],"<e>"))				{					$key = "";					$value = null;											$this->iPos++;					while(!stristr($this->aObjArray[$this->iPos],"</e>"))					{						if(stristr($this->aObjArray[$this->iPos],"<k>"))						{							$this->iPos++;							while(!stristr($this->aObjArray[$this->iPos],"</k>"))							{								$key .= $this->aObjArray[$this->iPos];								$this->iPos++;							}						}						if(stristr($this->aObjArray[$this->iPos],"<v>"))						{							$this->iPos++;							while(!stristr($this->aObjArray[$this->iPos],"</v>"))							{								if(stristr($this->aObjArray[$this->iPos],"<xjxobj>"))								{									$value = $this->_parseObjXml("xjxobj");									$this->iPos++;								}								else								{									$value .= $this->aObjArray[$this->iPos];									if ($this->bDecodeUTF8Input)									{										$value = $this->_decodeUTF8Data($value);									}								}								$this->iPos++;							}						}						$this->iPos++;					}										$aArray[$key]=$value;				}			}		}				if ($rootTag == "xjxquery")		{			$sQuery = "";			$this->iPos++;			while(!stristr($this->aObjArray[$this->iPos],"</xjxquery>"))			{				if (stristr($this->aObjArray[$this->iPos],"<q>") || stristr($this->aObjArray[$this->iPos],"</q>"))				{					$this->iPos++;					continue;				}				$sQuery	.= $this->aObjArray[$this->iPos];				$this->iPos++;			}						parse_str($sQuery, $aArray);			if ($this->bDecodeUTF8Input)			{				foreach($aArray as $key => $value)				{					$aArray[$key] = $this->_decodeUTF8Data($value);				}			}			// If magic quotes is on, then we need to strip the slashes from the			// array values because of the parse_str pass which adds slashes			if (get_magic_quotes_gpc() == 1) {				$newArray = array();				foreach ($aArray as $sKey => $sValue) {					if (is_string($sValue))						$newArray[$sKey] = stripslashes($sValue);					else						$newArray[$sKey] = $sValue;				}				$aArray = $newArray;			}		}				return $aArray;	}		/**	 * Decodes string data from UTF-8 to the current xajax encoding.	 * 	 * @param string data to convert	 * @access private	 * @return string converted data	 */	function _decodeUTF8Data($sData)	{		$sValue = $sData;		if ($this->bDecodeUTF8Input)		{			$sFuncToUse = NULL;						if (function_exists('iconv'))			{				$sFuncToUse = "iconv";			}			else if (function_exists('mb_convert_encoding'))			{				$sFuncToUse = "mb_convert_encoding";			}			else if ($this->sEncoding == "ISO-8859-1")			{				$sFuncToUse = "utf8_decode";			}			else			{				trigger_error("The incoming xajax data could not be converted from UTF-8", E_USER_NOTICE);			}						if ($sFuncToUse)			{				if (is_string($sValue))				{					if ($sFuncToUse == "iconv")					{						$sValue = iconv("UTF-8", $this->sEncoding.'//TRANSLIT', $sValue);					}					else if ($sFuncToUse == "mb_convert_encoding")					{						$sValue = mb_convert_encoding($sValue, $this->sEncoding, "UTF-8");					}					else					{						$sValue = utf8_decode($sValue);					}				}			}		}		return $sValue;		}		}// end class xajax /** * This function is registered with PHP's set_error_handler() function if * the xajax error handling system is turned on. */function xajaxErrorHandler($errno, $errstr, $errfile, $errline){	$errorReporting = error_reporting();	if (($errno & $errorReporting) == 0) return;		if ($errno == E_NOTICE) {		$errTypeStr = "NOTICE";	}	else if ($errno == E_WARNING) {		$errTypeStr = "WARNING";	}	else if ($errno == E_USER_NOTICE) {		$errTypeStr = "USER NOTICE";	}	else if ($errno == E_USER_WARNING) {		$errTypeStr = "USER WARNING";	}	else if ($errno == E_USER_ERROR) {		$errTypeStr = "USER FATAL ERROR";	}	else if ($errno == E_STRICT) {		return;	}	else {		$errTypeStr = "UNKNOWN: $errno";	}	$GLOBALS['xajaxErrorHandlerText'] .= "\n----\n[$errTypeStr] $errstr\nerror in line $errline of file $errfile";}?>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色综合咪咪久久| 欧美图片一区二区三区| 亚洲高清久久久| 国产精品色一区二区三区| 欧美精品少妇一区二区三区| 成人激情午夜影院| 久久国产乱子精品免费女| 一区二区三区欧美视频| 久久久99精品久久| 91麻豆精品国产91久久久久久 | 亚洲一线二线三线视频| 久久久久国产一区二区三区四区| 91麻豆福利精品推荐| 国产精品综合一区二区| 日产欧产美韩系列久久99| 亚洲欧美日韩一区二区三区在线观看| 日韩欧美电影一二三| 欧美性大战久久久久久久| 不卡一二三区首页| 国产在线视频精品一区| 日本亚洲一区二区| 亚洲一区二区三区不卡国产欧美| 亚洲国产精品黑人久久久| 精品美女在线播放| 91精品国产品国语在线不卡| 日本高清不卡视频| 色偷偷一区二区三区| 成人丝袜18视频在线观看| 国产在线不卡一区| 精品在线观看视频| 久久99精品国产麻豆婷婷洗澡| 性做久久久久久免费观看 | 国产女人18毛片水真多成人如厕 | 欧美电影在线免费观看| 欧美亚洲一区二区在线| 在线视频一区二区三区| 色猫猫国产区一区二在线视频| 成人激情黄色小说| av成人免费在线| 91碰在线视频| 在线观看亚洲一区| 欧美日韩一区国产| 欧美日韩精品高清| 制服.丝袜.亚洲.另类.中文| 777奇米四色成人影色区| 91精品国产91久久久久久一区二区 | 精品亚洲国产成人av制服丝袜| 久久狠狠亚洲综合| 国产成人欧美日韩在线电影| 国产ts人妖一区二区| 国产99久久久国产精品免费看| 成人免费视频一区| 91亚洲精品一区二区乱码| 欧美中文字幕亚洲一区二区va在线 | 久久国产精品色婷婷| 激情成人午夜视频| 床上的激情91.| 一本久久a久久精品亚洲| 欧美在线小视频| 精品视频1区2区3区| 91精品国产欧美一区二区成人| 日韩欧美一级二级| 国产无人区一区二区三区| 中文字幕一区二区5566日韩| 亚洲精品国产视频| 午夜精品视频一区| 国产乱码精品一区二区三区av | 国产69精品久久777的优势| a4yy欧美一区二区三区| 91福利在线导航| 91精品国产入口| 欧美激情一区二区在线| 一区二区三区电影在线播| 日韩av中文在线观看| 国产福利精品导航| 欧美亚洲图片小说| 精品国产乱码久久久久久免费 | 麻豆精品一区二区av白丝在线| 国产精品一区二区免费不卡| 色一情一伦一子一伦一区| 日韩你懂的在线播放| 亚洲欧洲精品天堂一级| 日本强好片久久久久久aaa| 国产精品99久久久久久久vr| 欧美综合亚洲图片综合区| 精品国产一二三| 一区二区三区在线免费| 久久精品国产**网站演员| 一本大道av一区二区在线播放| 精品国产精品网麻豆系列 | 一区二区三区精品在线| 久草精品在线观看| 欧美视频三区在线播放| 久久精品一区二区| 日韩精品福利网| 99国内精品久久| 精品久久久久久最新网址| 亚洲素人一区二区| 国产麻豆视频一区| 欧美精品tushy高清| 亚洲日本在线天堂| 国产一区二区免费视频| 9191精品国产综合久久久久久| 国产精品你懂的在线| 久久电影网站中文字幕| 欧洲视频一区二区| 中文字幕欧美一| 国产1区2区3区精品美女| 91精品国产乱| 亚洲一区二区在线播放相泽| 成人动漫在线一区| 久久久久久免费| 久久国产精品色| 日韩视频一区二区三区在线播放| 一区二区三区中文字幕电影| 成人av一区二区三区| 亚洲精品一区在线观看| 欧美a级一区二区| 欧美顶级少妇做爰| 亚洲国产精品一区二区www在线 | 91同城在线观看| 国产精品国产三级国产三级人妇| 国产精品一区二区不卡| 欧美一区二区三区免费视频 | 老司机一区二区| 91精品国产91热久久久做人人| 亚洲一区二区三区三| 日本韩国精品一区二区在线观看| 一区在线播放视频| 波多野结衣中文字幕一区| 国产精品色在线| 成人av电影免费观看| 国产精品美女久久久久久2018| 国产精品一区一区三区| 久久精品欧美一区二区三区不卡| 久久99精品国产.久久久久| 日韩一区二区精品葵司在线| 奇米精品一区二区三区四区| 日韩欧美在线不卡| 九色porny丨国产精品| 精品免费一区二区三区| 国产在线精品不卡| 久久综合久久综合久久综合| 国产成人免费视| 国产精品久久久久久久第一福利| 91在线视频18| 亚洲成在人线在线播放| 欧美电影在哪看比较好| 久色婷婷小香蕉久久| 精品国产a毛片| 国产成人精品免费看| 综合激情成人伊人| 日本精品视频一区二区三区| 亚洲成va人在线观看| 日韩欧美高清dvd碟片| 国产精品一区二区久激情瑜伽| 国产精品乱码久久久久久| 99精品国产视频| 天堂午夜影视日韩欧美一区二区| 欧美成人一区二区| 国产成人午夜电影网| 一区二区三区欧美日韩| 欧美一区二区三区视频在线观看| 韩国av一区二区三区| 中文字幕一区日韩精品欧美| 欧美三级电影在线看| 蜜桃视频在线观看一区| 中文字幕 久热精品 视频在线| 一本到高清视频免费精品| 日韩国产欧美在线播放| www久久精品| 色网综合在线观看| 精品亚洲porn| 亚洲精品国产无套在线观| 日韩三级中文字幕| 成av人片一区二区| 亚洲成人av中文| 国产女主播一区| 制服丝袜激情欧洲亚洲| 成人蜜臀av电影| 日本免费新一区视频| 亚洲欧美中日韩| 日韩亚洲欧美综合| 91色九色蝌蚪| 国产主播一区二区三区| 一个色妞综合视频在线观看| 精品国产污污免费网站入口| 欧美亚洲一区三区| 丰满亚洲少妇av| 免费人成精品欧美精品| 国产精品国产a| 精品福利在线导航| 欧美亚洲图片小说| 成人av网址在线观看| 激情综合网最新| 视频一区中文字幕国产| 亚洲视频一区在线| 久久久久久电影| 日韩欧美国产麻豆| 欧美绝品在线观看成人午夜影视|