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

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

?? openid.php

?? 簡介:IceBB是一個強大
?? PHP
?? 第 1 頁 / 共 2 頁
字號:
<?php/** * This is the PHP OpenID library by JanRain, Inc. * * This module contains core utility functionality used by the * library.  See Consumer.php and Server.php for the consumer and * server implementations. * * PHP versions 4 and 5 * * LICENSE: See the COPYING file included in this distribution. * * @package OpenID * @author JanRain, Inc. <openid@janrain.com> * @copyright 2005 Janrain, Inc. * @license http://www.gnu.org/copyleft/lesser.html LGPL *//** * Require the fetcher code. */require_once "Auth/Yadis/PlainHTTPFetcher.php";require_once "Auth/Yadis/ParanoidHTTPFetcher.php";require_once "Auth/OpenID/BigMath.php";/** * Status code returned by the server when the only option is to show * an error page, since we do not have enough information to redirect * back to the consumer. The associated value is an error message that * should be displayed on an HTML error page. * * @see Auth_OpenID_Server */define('Auth_OpenID_LOCAL_ERROR', 'local_error');/** * Status code returned when there is an error to return in key-value * form to the consumer. The caller should return a 400 Bad Request * response with content-type text/plain and the value as the body. * * @see Auth_OpenID_Server */define('Auth_OpenID_REMOTE_ERROR', 'remote_error');/** * Status code returned when there is a key-value form OK response to * the consumer. The value associated with this code is the * response. The caller should return a 200 OK response with * content-type text/plain and the value as the body. * * @see Auth_OpenID_Server */define('Auth_OpenID_REMOTE_OK', 'remote_ok');/** * Status code returned when there is a redirect back to the * consumer. The value is the URL to redirect back to. The caller * should return a 302 Found redirect with a Location: header * containing the URL. * * @see Auth_OpenID_Server */define('Auth_OpenID_REDIRECT', 'redirect');/** * Status code returned when the caller needs to authenticate the * user. The associated value is a {@link Auth_OpenID_ServerRequest} * object that can be used to complete the authentication. If the user * has taken some authentication action, use the retry() method of the * {@link Auth_OpenID_ServerRequest} object to complete the request. * * @see Auth_OpenID_Server */define('Auth_OpenID_DO_AUTH', 'do_auth');/** * Status code returned when there were no OpenID arguments * passed. This code indicates that the caller should return a 200 OK * response and display an HTML page that says that this is an OpenID * server endpoint. * * @see Auth_OpenID_Server */define('Auth_OpenID_DO_ABOUT', 'do_about');/** * Defines for regexes and format checking. */define('Auth_OpenID_letters',       "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ");define('Auth_OpenID_digits',       "0123456789");define('Auth_OpenID_punct',       "!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~");if (Auth_OpenID_getMathLib() === null) {    Auth_OpenID_setNoMathSupport();}/** * The OpenID utility function class. * * @package OpenID * @access private */class Auth_OpenID {    /**     * Return true if $thing is an Auth_OpenID_FailureResponse object;     * false if not.     *     * @access private     */    function isFailure($thing)    {        return is_a($thing, 'Auth_OpenID_FailureResponse');    }    /**     * Gets the query data from the server environment based on the     * request method used.  If GET was used, this looks at     * $_SERVER['QUERY_STRING'] directly.  If POST was used, this     * fetches data from the special php://input file stream.     *     * Returns an associative array of the query arguments.     *     * Skips invalid key/value pairs (i.e. keys with no '=value'     * portion).     *     * Returns an empty array if neither GET nor POST was used, or if     * POST was used but php://input cannot be opened.     *     * @access private     */    function getQuery($query_str=null)    {        $data = array();        if ($query_str !== null) {            $data = Auth_OpenID::params_from_string($query_str);        } else if (!array_key_exists('REQUEST_METHOD', $_SERVER)) {            // Do nothing.        } else {          // XXX HACK FIXME HORRIBLE.          //          // POSTing to a URL with query parameters is acceptable, but          // we don't have a clean way to distinguish those parameters          // when we need to do things like return_to verification          // which only want to look at one kind of parameter.  We're          // going to emulate the behavior of some other environments          // by defaulting to GET and overwriting with POST if POST          // data is available.          $data = Auth_OpenID::params_from_string($_SERVER['QUERY_STRING']);          if ($_SERVER['REQUEST_METHOD'] == 'POST') {            $str = file_get_contents('php://input');            if ($str === false) {              $post = array();            } else {              $post = Auth_OpenID::params_from_string($str);            }            $data = array_merge($data, $post);          }        }        return $data;    }    function params_from_string($str)    {        $chunks = explode("&", $str);        $data = array();        foreach ($chunks as $chunk) {            $parts = explode("=", $chunk, 2);            if (count($parts) != 2) {                continue;            }            list($k, $v) = $parts;            $data[$k] = urldecode($v);        }        return $data;    }    /**     * Create dir_name as a directory if it does not exist. If it     * exists, make sure that it is, in fact, a directory.  Returns     * true if the operation succeeded; false if not.     *     * @access private     */    function ensureDir($dir_name)    {        if (is_dir($dir_name) || @mkdir($dir_name)) {            return true;        } else {            if (Auth_OpenID::ensureDir(dirname($dir_name))) {                return is_dir($dir_name) || @mkdir($dir_name);            } else {                return false;            }        }    }    /**     * Adds a string prefix to all values of an array.  Returns a new     * array containing the prefixed values.     *     * @access private     */    function addPrefix($values, $prefix)    {        $new_values = array();        foreach ($values as $s) {            $new_values[] = $prefix . $s;        }        return $new_values;    }    /**     * Convenience function for getting array values.  Given an array     * $arr and a key $key, get the corresponding value from the array     * or return $default if the key is absent.     *     * @access private     */    function arrayGet($arr, $key, $fallback = null)    {        if (is_array($arr)) {            if (array_key_exists($key, $arr)) {                return $arr[$key];            } else {                return $fallback;            }        } else {            trigger_error("Auth_OpenID::arrayGet (key = ".$key.") expected " .                          "array as first parameter, got " .                          gettype($arr), E_USER_WARNING);            return false;        }    }    /**     * Replacement for PHP's broken parse_str.     */    function parse_str($query)    {        if ($query === null) {            return null;        }        $parts = explode('&', $query);        $new_parts = array();        for ($i = 0; $i < count($parts); $i++) {            $pair = explode('=', $parts[$i]);            if (count($pair) != 2) {                continue;            }            list($key, $value) = $pair;            $new_parts[$key] = urldecode($value);        }        return $new_parts;    }    /**     * Implements the PHP 5 'http_build_query' functionality.     *     * @access private     * @param array $data Either an array key/value pairs or an array     * of arrays, each of which holding two values: a key and a value,     * sequentially.     * @return string $result The result of url-encoding the key/value     * pairs from $data into a URL query string     * (e.g. "username=bob&id=56").     */    function httpBuildQuery($data)

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
在线不卡免费欧美| 亚洲精品国产一区二区精华液| 久久久国产精品不卡| 综合色天天鬼久久鬼色| 另类小说一区二区三区| 色婷婷综合中文久久一本| 精品美女被调教视频大全网站| 一区二区欧美视频| 成人av在线网| 精品久久人人做人人爰| 亚洲一区在线电影| 色综合天天视频在线观看| 精品国产免费视频| 美女在线视频一区| 4438x亚洲最大成人网| 亚洲激情男女视频| 99久久久久久| 国产精品黄色在线观看| 国产精品亚洲а∨天堂免在线| 91精品国产综合久久精品app| 亚洲欧美精品午睡沙发| av中文一区二区三区| 国产欧美日韩在线看| 国内精品视频666| 欧美精品一区二区三区四区 | 亚洲色图欧洲色图婷婷| 国产成人av电影在线| 久久午夜羞羞影院免费观看| 轻轻草成人在线| 日韩一区二区电影网| 日本vs亚洲vs韩国一区三区二区| 欧美在线观看一二区| 亚洲自拍都市欧美小说| 在线视频欧美区| 亚洲a一区二区| 在线播放/欧美激情| 日本成人在线网站| 欧美xxxxxxxx| 国产精品12区| 亚洲国产成人av| 制服视频三区第一页精品| 日本不卡一区二区三区| 91精品麻豆日日躁夜夜躁| 日本vs亚洲vs韩国一区三区二区| 久久综合九色综合97婷婷 | 777欧美精品| 久久精品国产亚洲5555| 久久综合九色综合97婷婷| 国产福利一区在线| 亚洲欧美欧美一区二区三区| 欧美三级在线视频| 麻豆免费精品视频| 中文字幕精品综合| 欧美午夜片在线观看| 美女国产一区二区| 国产精品乱码一区二三区小蝌蚪| 91免费视频观看| 热久久国产精品| 国产精品久久久久天堂| 欧美色老头old∨ideo| 精一区二区三区| 136国产福利精品导航| 欧美日韩国产影片| 国产一区在线观看视频| 成人欧美一区二区三区小说 | 自拍偷在线精品自拍偷无码专区| 在线观看网站黄不卡| 九色综合国产一区二区三区| 1000部国产精品成人观看| 欧美疯狂做受xxxx富婆| 岛国av在线一区| 婷婷成人综合网| 国产精品久久久久婷婷二区次| 51久久夜色精品国产麻豆| 国产一区二区91| 亚洲成av人片| 中文字幕乱码久久午夜不卡| 91精品在线免费观看| 91在线视频免费91| 极品美女销魂一区二区三区| 亚洲一区在线视频| 欧美国产一区二区在线观看| 欧美一区二区在线播放| 91丝袜美腿高跟国产极品老师| 美女视频一区二区三区| 亚洲精品国久久99热| 国产亚洲自拍一区| 91麻豆精品国产自产在线观看一区| 国产成人免费网站| 精品一区二区三区不卡| 婷婷夜色潮精品综合在线| 国产精品久久看| 国产欧美日韩精品a在线观看| 欧美一级淫片007| 欧洲人成人精品| 91在线精品一区二区| 国产凹凸在线观看一区二区| 全国精品久久少妇| 偷拍日韩校园综合在线| 亚洲国产精品天堂| 日韩美女在线视频| 欧美日韩一区高清| 色婷婷狠狠综合| 99亚偷拍自图区亚洲| 成人免费毛片片v| 国产成人精品www牛牛影视| 国内外成人在线| 久久97超碰色| 国产一区二区三区免费播放 | 亚洲综合av网| 亚洲免费电影在线| 亚洲免费大片在线观看| 亚洲色图欧洲色图| 亚洲自拍另类综合| 亚洲一区二区精品久久av| 亚洲自拍偷拍综合| 视频一区欧美精品| 麻豆视频观看网址久久| 久久aⅴ国产欧美74aaa| 久久国产精品99久久久久久老狼| 日本亚洲一区二区| 精品一区二区日韩| 国产成人精品一区二区三区四区| 国产精品自拍一区| www.日韩在线| 色婷婷久久一区二区三区麻豆| 色狠狠色狠狠综合| 欧美日韩精品一区二区三区蜜桃 | 国产欧美一区二区三区在线看蜜臀| 精品剧情在线观看| 国产精品萝li| 亚洲综合激情网| 麻豆成人在线观看| 成人网男人的天堂| 欧美在线观看视频在线| 91精品国产乱码久久蜜臀| 欧美成人性战久久| 国产精品女人毛片| 亚洲成人激情自拍| 久久国产精品无码网站| 99久久精品免费| 欧美一区二区三区电影| 久久久久国产一区二区三区四区| 国产精品久久久久天堂| 亚洲国产视频一区二区| 国内不卡的二区三区中文字幕| eeuss国产一区二区三区| 欧美日韩激情一区| 国产日本一区二区| 亚洲成人一二三| 成人福利电影精品一区二区在线观看| 色综合久久中文字幕| 日韩免费高清电影| 亚洲欧美另类在线| 国产一区不卡在线| 91福利区一区二区三区| 国产欧美一区二区精品秋霞影院| 一区二区三区中文免费| 激情欧美日韩一区二区| 欧美伊人久久大香线蕉综合69| 精品日韩在线一区| 亚洲在线中文字幕| 成人美女在线观看| 日韩精品一区二区在线观看| 一片黄亚洲嫩模| 粉嫩av亚洲一区二区图片| 欧美精品久久久久久久多人混战| 中文字幕欧美三区| 狠狠色狠狠色合久久伊人| 欧美三级韩国三级日本一级| 欧美韩国日本不卡| 色香色香欲天天天影视综合网| 日韩免费高清电影| 日韩av网站免费在线| 日本高清不卡aⅴ免费网站| 国产女人18水真多18精品一级做| 五月婷婷激情综合| 日本高清不卡一区| 亚洲三级小视频| 国产成人午夜电影网| 精品剧情在线观看| 欧美aa在线视频| 欧美日韩亚洲综合一区| 亚洲欧美福利一区二区| 成人av资源在线观看| 国产亚洲女人久久久久毛片| 精品一区二区免费在线观看| 在线成人午夜影院| 亚洲一区电影777| 日本久久精品电影| 亚洲精品伦理在线| 色偷偷88欧美精品久久久| 亚洲欧洲精品一区二区三区| 国产精品911| 中文字幕不卡在线播放| 成人免费精品视频| 国产精品美女久久福利网站| 成人午夜大片免费观看| 国产精品色噜噜| 91丨porny丨国产入口|