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

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

?? ajax.php

?? This is the script which used on 10minutemail.com for temporary email.
?? PHP
?? 第 1 頁 / 共 3 頁
字號:
<?php// $Id$/** * This is a quick hack, loading serializers as needed doesn't work in php5 */require_once "HTML/AJAX/Serializer/JSON.php";require_once "HTML/AJAX/Serializer/Null.php";require_once "HTML/AJAX/Serializer/Error.php";require_once "HTML/AJAX/Serializer/XML.php";require_once "HTML/AJAX/Serializer/PHP.php";require_once 'HTML/AJAX/Debug.php';    /** * OO AJAX Implementation for PHP * * @category    HTML * @package     AJAX * @author      Joshua Eichorn <josh@bluga.net> * @author      Arpad Ray <arpad@php.net> * @author      David Coallier <davidc@php.net> * @author      Elizabeth Smith <auroraeosrose@gmail.com> * @copyright   2005 Joshua Eichorn, Arpad Ray, David Coallier, Elizabeth Smith * @license     http://www.opensource.org/licenses/lgpl-license.php   LGPL * @version     Release: 0.5.2 * @link        http://pear.php.net/package/HTML_AJAX */class HTML_AJAX {    /**     * An array holding the instances were exporting     *     * key is the exported name     *     * row format is array('className'=>'','exportedName'=>'','instance'=>'','exportedMethods=>'')     *     * @var object     * @access private     */        var $_exportedInstances = array();    /**     * Set the server url in the generated stubs to this value     * If set to false, serverUrl will not be set     * @var false|string     */    var $serverUrl = false;    /**     * What encoding your going to use for serializing data from php being sent to javascript     * @var string  JSON|PHP|Null     */    var $serializer = 'JSON';    /**     * What encoding your going to use for unserializing data sent from javascript     * @var string  JSON|PHP|Null     */    var $unserializer = 'JSON';    /**     * Option to use loose typing for JSON encoding     * @var bool     * @access public     */    var $jsonLooseType = true;    /**     * Content-type map     *     * Used in to automatically choose serializers as needed     */    var $contentTypeMap = array(            'JSON'  => 'application/json',            'XML'   => 'application/xml',            'Null'  => 'text/plain',            'Error' => 'application/error',            'PHP'   => 'application/php-serialized',            'Urlencoded' => 'application/x-www-form-urlencoded'        );        /**     * This is the debug variable that we will be passing the     * HTML_AJAX_Debug instance to.     *     * @param object HTML_AJAX_Debug     */    var $debug;    /**     * This is to tell if debug is enabled or not. If so, then     * debug is called, instantiated then saves the file and such.     */    var $debugEnabled = false;        /**     * This puts the error into a session variable is set to true.     * set to false by default.     *     * @access public     */    var $debugSession = false;    /**     * If the Content-Length header should be sent, if your using a gzip handler on an output buffer, or run into any compatability problems, try disabling this.     *     * @access public     * @var boolean     */    var $sendContentLength = true;    /**     * Make Generated code compatible with php4 by lowercasing all class/method names before exporting to JavaScript     * If you have code that works on php4 but not on php5 then setting this flag can fix the problem.        * The recommended solution is too specify the class and method names when registering the class letting you have function case in php4 as well     *     * @access public     * @var boolean     */    var $php4CompatCase = false;    /**     * Automatically pack all generated JavaScript making it smaller     *     * If your using output compression this might not make sense     */    var $packJavaScript = false;    /**     * Holds current payload info     *     * @access private     * @var string     */    var $_payload;    /**     * Holds iframe id IF this is an iframe xmlhttprequest     *     * @access private     * @var string     */    var $_iframe;    /**     * Holds the list of classes permitted to be unserialized     *     * @access private     * @var array     */    var $_allowedClasses = array();        /**     * Holds serializer instances     */    var $_serializers = array();        /**     * PHP callbacks we're exporting     */    var $_validCallbacks = array();    /**     * Interceptor instance     */    var $_interceptor = false;    /**     * Set a class to handle requests     *     * @param   object  $instance     * @param   mixed   $exportedName   Name used for the javascript class, if false the name of the php class is used     * @param   mixed   $exportedMethods   If false all functions without a _ prefix are exported, if an array only the methods listed in the array are exported     * @return  void     */    function registerClass(&$instance, $exportedName = false, $exportedMethods = false)    {        $className = strtolower(get_class($instance));        if ($exportedName === false) {            $exportedName = get_class($instance);            if ($this->php4CompatCase) {                $exportedName = strtolower($exportedName);            }        }        if ($exportedMethods === false) {            $exportedMethods = $this->_getMethodsToExport($className);        }        $index = strtolower($exportedName);        $this->_exportedInstances[$index] = array();        $this->_exportedInstances[$index]['className'] = $className;        $this->_exportedInstances[$index]['exportedName'] = $exportedName;        $this->_exportedInstances[$index]['instance'] =& $instance;        $this->_exportedInstances[$index]['exportedMethods'] = $exportedMethods;    }    /**     * Get a list of methods in a class to export     *     * This function uses get_class_methods to get a list of callable methods, so if you're on PHP5 extending this class with a class you want to export should export its     * protected methods, while normally only its public methods would be exported. All methods starting with _ are removed from the export list.     * This covers PHP4 style private by naming as well as magic methods in either PHP4 or PHP5     *     * @param   string  $className     * @return  array   all methods of the class that are public     * @access private     */        function _getMethodsToExport($className)    {        $funcs = get_class_methods($className);        foreach ($funcs as $key => $func) {            if (strtolower($func) === $className || substr($func,0,1) === '_') {                unset($funcs[$key]);            }            else if ($this->php4CompatCase) {                $funcs[$key] = strtolower($func);            }        }        return $funcs;    }    /**     * Generate the client Javascript code     *     * @return   string   generated javascript client code     */    function generateJavaScriptClient()    {        $client = '';        $names = array_keys($this->_exportedInstances);        foreach ($names as $name) {            $client .= $this->generateClassStub($name);        }        return $client;    }    /**     * Return the stub for a class     *     * @param    string   $name    name of the class to generated the stub for, note that this is the exported name not the php class name     * @return   string   javascript proxy stub code for a single class     */    function generateClassStub($name)    {        if (!isset($this->_exportedInstances[$name])) {            return '';        }        $client = "// Client stub for the {$this->_exportedInstances[$name]['exportedName']} PHP Class\n";        $client .= "function {$this->_exportedInstances[$name]['exportedName']}(callback) {\n";        $client .= "\tmode = 'sync';\n";        $client .= "\tif (callback) { mode = 'async'; }\n";        $client .= "\tthis.className = '{$this->_exportedInstances[$name]['exportedName']}';\n";        if ($this->serverUrl) {            $client .= "\tthis.dispatcher = new HTML_AJAX_Dispatcher(this.className,mode,callback,'{$this->serverUrl}','{$this->unserializer}');\n}\n";        } else {            $client .= "\tthis.dispatcher = new HTML_AJAX_Dispatcher(this.className,mode,callback,false,'{$this->unserializer}');\n}\n";        }        $client .= "{$this->_exportedInstances[$name]['exportedName']}.prototype  = {\n";        $client .= "\tSync: function() { this.dispatcher.Sync(); }, \n";        $client .= "\tAsync: function(callback) { this.dispatcher.Async(callback); },\n";        foreach($this->_exportedInstances[$name]['exportedMethods'] as $method) {            $client .= $this->_generateMethodStub($method);        }        $client = substr($client,0,(strlen($client)-2))."\n";        $client .= "}\n\n";        if ($this->packJavaScript) {                $client = $this->packJavaScript($client);        }        return $client;    }    /**     * Returns a methods stub     *     *     * @param string the method name     * @return string the js code     * @access private     */        function _generateMethodStub($method)    {        $stub = "\t{$method}: function() { return this.dispatcher.doCall('{$method}',arguments); },\n";        return $stub;    }    /**     * Populates the current payload     *     *     * @param string the method name     * @return string the js code     * @access private     */        function populatePayload()    {        if(isset($_REQUEST['Iframe_XHR'])) {            $this->_iframe = $_REQUEST['Iframe_XHR_id'];            if (isset($_REQUEST['Iframe_XHR_headers']) && is_array($_REQUEST['Iframe_XHR_headers'])) {                foreach ($_REQUEST['Iframe_XHR_headers'] as $header) {                    $array = explode(':', $header);                    $array[0] = strip_tags(strtoupper(str_replace('-', '_', $array[0])));                    //only content-length and content-type can go in without an http_ prefix - security                    if(strpos($array[0], 'HTTP_') !== 0                          && strcmp('CONTENT_TYPE', $array[0])                          && strcmp('CONTENT_LENGTH', $array[0])) {                        $array[0] = 'HTTP_' . $array[0];                    }                    $_SERVER[$array[0]] = strip_tags($array[1]);                }            }            $this->_payload = (isset($_REQUEST['Iframe_XHR_data']) ? $_REQUEST['Iframe_XHR_data'] : '');            if (isset($_REQUEST['Iframe_XHR_method'])) {                $_GET['m'] = $_REQUEST['Iframe_XHR_method'];            }

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
丁香激情综合国产| 成人高清伦理免费影院在线观看| 国产午夜精品久久久久久免费视| 欧美日韩国产系列| av电影在线观看不卡| 成人午夜免费视频| 成人免费视频国产在线观看| 9i看片成人免费高清| 成人午夜短视频| 成人免费视频视频在线观看免费| 成年人网站91| 色欧美片视频在线观看在线视频| 91在线视频网址| 91福利社在线观看| 欧美三级日韩在线| 91精品一区二区三区久久久久久| 777欧美精品| 久久亚洲综合av| 国产欧美日韩精品a在线观看| 国产精品午夜在线| 亚洲日本在线看| 爽好多水快深点欧美视频| 日韩电影一二三区| 国产中文字幕精品| 成人精品高清在线| 色狠狠一区二区| 日韩欧美亚洲国产另类| 久久精品免费在线观看| 中文字幕一区二区三区av| 一区二区三区色| 久久国产夜色精品鲁鲁99| 国产精品影视网| 色综合久久综合网欧美综合网 | 99国产精品视频免费观看| 色拍拍在线精品视频8848| 日韩一区二区在线播放| 国产三级欧美三级| 夜夜嗨av一区二区三区网页 | 亚洲va欧美va人人爽| 九色|91porny| 91免费观看视频| 日韩视频在线你懂得| 国产精品久久久久9999吃药| 香蕉久久一区二区不卡无毒影院| 国内外成人在线| 欧洲中文字幕精品| 国产蜜臀av在线一区二区三区| 亚洲宅男天堂在线观看无病毒| 紧缚捆绑精品一区二区| 欧美性xxxxxx少妇| 亚洲国产精品成人综合色在线婷婷 | 懂色av中文一区二区三区| 欧美日韩一区在线观看| 国产精品免费视频观看| 久久99国产精品麻豆| 色噜噜狠狠色综合欧洲selulu| 久久久国产一区二区三区四区小说 | 在线免费观看成人短视频| 久久精品夜色噜噜亚洲a∨| 亚洲国产一区二区a毛片| 成人午夜伦理影院| 精品国产三级电影在线观看| 日韩av午夜在线观看| 欧美午夜免费电影| 亚洲人成伊人成综合网小说| 99视频有精品| 国产欧美日韩视频在线观看| 韩国毛片一区二区三区| 91精品一区二区三区在线观看| 亚洲第一福利视频在线| 91丝袜美女网| 国产精品久久久久四虎| 国产成人在线色| 日韩欧美二区三区| 日韩电影在线免费看| 欧美日韩一级片网站| 亚洲综合精品久久| 欧美性一级生活| 亚洲一级不卡视频| 欧美在线三级电影| 亚洲h动漫在线| 欧美夫妻性生活| 久久久精品国产免费观看同学| 国产一区二区美女| 精品国产91洋老外米糕| 国产麻豆成人传媒免费观看| 欧美激情一区不卡| 成人h精品动漫一区二区三区| 成人欧美一区二区三区白人| 一本色道久久综合亚洲精品按摩| 亚洲最新视频在线播放| 欧美人动与zoxxxx乱| 日本不卡不码高清免费观看| 精品sm在线观看| 成人精品一区二区三区四区| 一区二区三国产精华液| 欧美日韩精品二区第二页| 日日骚欧美日韩| 久久久久久一级片| 成人免费视频一区| 亚洲成人一区二区| 日韩欧美在线综合网| 高清在线观看日韩| 亚洲狼人国产精品| 欧美一区二区精品在线| 国产精品白丝jk黑袜喷水| 亚洲欧洲综合另类在线| 日韩一区国产二区欧美三区| 99在线精品视频| 天天av天天翘天天综合网色鬼国产| 久久婷婷综合激情| av在线播放一区二区三区| 一区二区三区精品在线| 欧美videossexotv100| 99免费精品在线观看| 日韩精品成人一区二区三区 | 95精品视频在线| 丝瓜av网站精品一区二区| 国产日韩一级二级三级| 欧美性猛交xxxx乱大交退制版| 国产精品1区二区.| 亚洲国产欧美另类丝袜| 国产欧美日韩综合精品一区二区| 成人激情电影免费在线观看| 中文字幕日韩一区二区| 三级欧美在线一区| 日本道色综合久久| 中文字幕一区日韩精品欧美| 成人97人人超碰人人99| 国产精品视频一二| 99精品国产视频| 中文字幕制服丝袜成人av| 91九色最新地址| 另类小说综合欧美亚洲| 日韩欧美一区二区免费| 欧美国产成人精品| 岛国一区二区三区| 日韩黄色免费电影| 亚洲欧美日韩国产成人精品影院 | 男女男精品视频网| 日韩一区欧美一区| 久久久精品国产99久久精品芒果| 欧美福利一区二区| 在线观看91视频| 色狠狠一区二区| 92国产精品观看| a在线欧美一区| 成人黄色电影在线 | 激情小说欧美图片| 丝袜美腿高跟呻吟高潮一区| 亚洲狠狠爱一区二区三区| 国产精品网站一区| 国产欧美日韩亚州综合| 国产日韩综合av| 亚洲国产成人自拍| 中文子幕无线码一区tr| 中文一区二区完整视频在线观看 | 亚洲一区二区三区小说| 亚洲丝袜精品丝袜在线| 亚洲欧洲精品天堂一级| 国产精品动漫网站| 中文字幕亚洲欧美在线不卡| 18成人在线观看| 亚洲另类中文字| 亚洲精品第1页| 夜夜嗨av一区二区三区中文字幕 | 国产网红主播福利一区二区| 精品国产sm最大网站免费看| 久久久久久久性| 国产欧美一区二区三区鸳鸯浴| 中文字幕的久久| 国产精品久久99| 亚洲五码中文字幕| 日本不卡在线视频| 精品一区二区久久| 成人午夜在线免费| 91视频免费观看| 欧美午夜理伦三级在线观看| 在线播放视频一区| 欧美xxxx在线观看| 中文字幕高清不卡| 一区二区久久久| 日韩一区精品视频| 国产乱码字幕精品高清av| 不卡的av在线| 欧美日韩色一区| 久久久久国产精品麻豆| 亚洲另类色综合网站| 久久国产精品一区二区| 成人va在线观看| 91超碰这里只有精品国产| 久久综合久久综合亚洲| 亚洲欧美成aⅴ人在线观看| 丝瓜av网站精品一区二区| 成人一级黄色片| 欧美美女视频在线观看| 国产人成亚洲第一网站在线播放| 一区二区日韩av| 国产激情视频一区二区在线观看| 欧美亚洲国产一区二区三区va |