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

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

?? openid.php

?? 國外免費開源的內容管理系統
?? PHP
字號:
<?php// Check to ensure this file is within the rest of the frameworkdefined('JPATH_BASE') or die();/** * 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 "Services/Yadis/PlainHTTPFetcher.php";require_once "Services/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) {    define('Auth_OpenID_NO_MATH_SUPPORT', true);}/** * The OpenID utility function class. * * @package OpenID * @access private */class Auth_OpenID {    /**     * These namespaces are automatically fixed in query arguments by     * Auth_OpenID::fixArgs.     */    function getOpenIDNamespaces()    {        return array('openid',                     'sreg');    }    /**     * Rename query arguments back to 'openid.' from 'openid_'     *     * @access private     * @param array $args An associative array of URL query arguments     */    function fixArgs($args)    {        foreach (array_keys($args) as $key) {            $fixed = $key;            if (preg_match('/^openid/', $key)) {                foreach (Auth_OpenID::getOpenIDNamespaces() as $ns) {                    if (preg_match('/'.$ns.'_/', $key)) {                        $fixed = preg_replace('/'.$ns.'_/', $ns.'.', $fixed);                    }                }                if ($fixed != $key) {                    $val = $args[$key];                    unset($args[$key]);                    $args[$fixed] = $val;                }            }        }        return $args;    }    /**     * 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;            }        }    }    /**     * Convenience function for getting array values.     *     * @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 expected " .                          "array as first parameter", E_USER_WARNING);            return false;        }    }    /**     * 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)    {        $pairs = array();        foreach ($data as $key => $value) {            if (is_array($value)) {                $pairs[] = urlencode($value[0])."=".urlencode($value[1]);            } else {                $pairs[] = urlencode($key)."=".urlencode($value);            }        }        return implode("&", $pairs);    }    /**     * "Appends" query arguments onto a URL.  The URL may or may not     * already have arguments (following a question mark).     *     * @param string $url A URL, which may or may not already have     * arguments.     * @param array $args Either an array key/value pairs or an array of     * arrays, each of which holding two values: a key and a value,     * sequentially.  If $args is an ordinary key/value array, the     * parameters will be added to the URL in sorted alphabetical order;     * if $args is an array of arrays, their order will be preserved.     * @return string $url The original URL with the new parameters added.     *     */    function appendArgs($url, $args)    {        if (count($args) == 0) {            return $url;        }        // Non-empty array; if it is an array of arrays, use        // multisort; otherwise use sort.        if (array_key_exists(0, $args) &&            is_array($args[0])) {            // Do nothing here.        } else {            $keys = array_keys($args);            sort($keys);            $new_args = array();            foreach ($keys as $key) {                $new_args[] = array($key, $args[$key]);            }            $args = $new_args;        }        $sep = '?';        if (strpos($url, '?') !== false) {            $sep = '&';        }        return $url . $sep . Auth_OpenID::httpBuildQuery($args);    }    /**     * Turn a string into an ASCII string.     *     * Replace non-ascii characters with a %-encoded, UTF-8     * encoding. This function will fail if the input is a string and     * there are non-7-bit-safe characters. It is assumed that the     * caller will have already translated the input into a Unicode     * character sequence, according to the encoding of the HTTP POST     * or GET.     *     * Do not escape anything that is already 7-bit safe, so we do the     * minimal transform on the identity URL     *     * @access private     */    function quoteMinimal($s)    {        $res = array();        for ($i = 0; $i < strlen($s); $i++) {            $c = $s[$i];            if ($c >= "\x80") {                for ($j = 0; $j < count(utf8_encode($c)); $j++) {                    array_push($res, sprintf("%02X", ord($c[$j])));                }            } else {                array_push($res, $c);            }        }        return implode('', $res);    }    /**     * Implements python's urlunparse, which is not available in PHP.     * Given the specified components of a URL, this function rebuilds     * and returns the URL.     *     * @access private     * @param string $scheme The scheme (e.g. 'http').  Defaults to 'http'.     * @param string $host The host.  Required.     * @param string $port The port.     * @param string $path The path.     * @param string $query The query.     * @param string $fragment The fragment.     * @return string $url The URL resulting from assembling the     * specified components.     */    function urlunparse($scheme, $host, $port = null, $path = '/',                                    $query = '', $fragment = '')    {        if (!$scheme) {            $scheme = 'http';        }        if (!$host) {            return false;        }        if (!$path) {            $path = '/';        }        $result = $scheme . "://" . $host;        if ($port) {            $result .= ":" . $port;        }        $result .= $path;        if ($query) {            $result .= "?" . $query;        }        if ($fragment) {            $result .= "#" . $fragment;        }        return $result;    }    /**     * Given a URL, this "normalizes" it by adding a trailing slash     * and / or a leading http:// scheme where necessary.  Returns     * null if the original URL is malformed and cannot be normalized.     *     * @access private     * @param string $url The URL to be normalized.     * @return mixed $new_url The URL after normalization, or null if     * $url was malformed.     */    function normalizeUrl($url)    {        if ($url === null) {            return null;        }        assert(is_string($url));        $old_url = $url;        $url = trim($url);        if (strpos($url, "://") === false) {            $url = "http://" . $url;        }        $parsed = @parse_url($url);        if ($parsed === false) {            return null;        }        $defaults = array(                          'scheme' => '',                          'host' => '',                          'path' => '',                          'query' => '',                          'fragment' => '',                          'port' => ''                          );        $parsed = array_merge($defaults, $parsed);        if (($parsed['scheme'] == '') ||            ($parsed['host'] == '')) {            if ($parsed['path'] == '' &&                $parsed['query'] == '' &&                $parsed['fragment'] == '') {                return null;            }            $url = 'http://' + $url;            $parsed = parse_url($url);            $parsed = array_merge($defaults, $parsed);        }        $tail = array_map(array('Auth_OpenID', 'quoteMinimal'),                          array($parsed['path'],                                $parsed['query'],                                $parsed['fragment']));        if ($tail[0] == '') {            $tail[0] = '/';        }        $url = Auth_OpenID::urlunparse($parsed['scheme'], $parsed['host'],                                       $parsed['port'], $tail[0], $tail[1],                                       $tail[2]);        assert(is_string($url));        return $url;    }}?>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
韩国理伦片一区二区三区在线播放| 亚洲婷婷综合色高清在线| 91九色最新地址| 播五月开心婷婷综合| 国产成人免费高清| 大陆成人av片| 99re8在线精品视频免费播放| 成人精品高清在线| av在线播放一区二区三区| 91尤物视频在线观看| 91高清视频免费看| 7777精品伊人久久久大香线蕉的 | 精品一区二区三区在线播放| 美国十次了思思久久精品导航| 久久精品国产99国产| 国产一区二区在线影院| 不卡av在线免费观看| 欧美性猛交xxxx乱大交退制版 | 久久综合久久久久88| 国产无一区二区| 亚洲精品久久久久久国产精华液| 午夜视频一区二区三区| 久久成人免费网站| 成人av网址在线观看| 欧日韩精品视频| 精品久久久久久综合日本欧美| 久久综合九色综合久久久精品综合 | 午夜精品视频在线观看| 久久国产精品99精品国产| 国产伦精品一区二区三区免费迷| www.成人网.com| 日韩你懂的在线播放| 国产精品视频一二三区| 亚洲二区视频在线| 国产激情一区二区三区四区 | 国产精品资源网| 日本福利一区二区| 久久久高清一区二区三区| 伊人开心综合网| 国产成人av自拍| 欧美成人伊人久久综合网| 亚洲精品免费在线播放| 国产成人av影院| 91麻豆精品国产| 亚洲自拍偷拍图区| 丁香婷婷深情五月亚洲| 69堂成人精品免费视频| 中文字幕中文字幕中文字幕亚洲无线| 久久国产尿小便嘘嘘尿| 欧美色爱综合网| 亚洲视频 欧洲视频| 国产传媒一区在线| 日韩一级片在线播放| 午夜免费久久看| 欧美亚洲国产一区二区三区va| 国产欧美日韩久久| 蜜桃视频在线观看一区二区| 欧美性猛交xxxx乱大交退制版| 亚洲欧美一区二区三区极速播放 | 欧美日韩中文另类| 亚洲欧洲精品成人久久奇米网| 国产一区二区三区免费在线观看 | 国产精品一区二区男女羞羞无遮挡| 欧美日韩1区2区| 亚洲国产一区二区三区青草影视| av一本久道久久综合久久鬼色| 久久精品一区二区三区不卡| 国产一区二区三区黄视频| 欧美一区二区三区四区五区| 亚洲成人tv网| 欧美精品aⅴ在线视频| 亚洲成人动漫在线免费观看| 欧美日韩精品电影| 日韩精品欧美成人高清一区二区| 欧美视频第二页| 日本 国产 欧美色综合| 精品国产乱子伦一区| 久久成人av少妇免费| 久久久噜噜噜久久中文字幕色伊伊 | 3d动漫精品啪啪一区二区竹菊| 亚洲成人你懂的| 91精品国产综合久久福利| 日本亚洲最大的色成网站www| 日韩免费观看高清完整版在线观看| 免费的国产精品| 国产午夜亚洲精品理论片色戒| 成人午夜视频免费看| 一区二区三区中文字幕电影| 777午夜精品视频在线播放| 另类的小说在线视频另类成人小视频在线| 污片在线观看一区二区| 日韩欧美国产一区二区三区| 激情综合色综合久久综合| 国产喂奶挤奶一区二区三区| 91亚洲精品乱码久久久久久蜜桃| 亚洲一区免费视频| 精品日韩99亚洲| 91在线一区二区三区| 日本va欧美va欧美va精品| 国产精品色噜噜| 欧美日韩一区二区三区在线看| 国产中文字幕精品| 亚洲欧美日韩一区二区三区在线观看| 欧洲国产伦久久久久久久| 老司机精品视频线观看86| 国产日韩精品一区二区浪潮av | 青草av.久久免费一区| 久久噜噜亚洲综合| 色老汉一区二区三区| 美女在线视频一区| 亚洲欧美综合网| 精品少妇一区二区| 欧美四级电影在线观看| 国产在线观看一区二区| 亚洲午夜久久久久| 久久夜色精品国产噜噜av| 欧美在线一区二区| 成人丝袜18视频在线观看| 日日骚欧美日韩| 国产精品理伦片| 精品黑人一区二区三区久久| 色综合中文字幕| 国产老肥熟一区二区三区| 性欧美疯狂xxxxbbbb| 国产精品三级在线观看| 日韩一区二区三区免费观看| 99久久精品免费看国产免费软件| 九一九一国产精品| 日韩国产欧美在线观看| 亚洲一区二区三区三| 国产精品的网站| 国产日韩欧美制服另类| 欧美电影免费观看高清完整版 | eeuss鲁片一区二区三区在线观看| 精品一区在线看| 蜜臀av性久久久久av蜜臀妖精| 亚洲黄色在线视频| 国产精品国产馆在线真实露脸| 亚洲精品在线电影| 日韩视频一区二区三区| 欧美精品在线观看播放| 欧洲一区二区三区在线| 91免费版在线| av午夜精品一区二区三区| 成人不卡免费av| 91麻豆免费看| 日本精品一区二区三区高清| 99久久婷婷国产综合精品| 99综合电影在线视频| 成人性视频网站| 粉嫩aⅴ一区二区三区四区| 加勒比av一区二区| 国产成人精品免费视频网站| 国产电影一区在线| 丁香婷婷综合激情五月色| 不卡电影一区二区三区| 色综合中文字幕| 欧美日韩在线播放| 欧美一区二区二区| 久久久久久**毛片大全| 国产精品萝li| 又紧又大又爽精品一区二区| 亚洲成人福利片| 国产原创一区二区| 粗大黑人巨茎大战欧美成人| 91在线视频官网| 6080国产精品一区二区| 26uuu精品一区二区| 国产精品丝袜黑色高跟| 亚洲一卡二卡三卡四卡五卡| 视频一区视频二区中文字幕| 男人的j进女人的j一区| 国产成人福利片| 欧美中文字幕一区二区三区| 欧美区在线观看| 久久综合色8888| 一区二区三区免费| 另类的小说在线视频另类成人小视频在线| 裸体一区二区三区| 国产1区2区3区精品美女| 色妹子一区二区| 日韩美女天天操| 亚洲视频在线观看一区| 日本伊人精品一区二区三区观看方式| 国产伦精品一区二区三区免费| 色婷婷久久99综合精品jk白丝| 日韩一区二区三区在线| 亚洲色图色小说| 精品在线播放免费| 欧美亚洲国产一卡| 国产嫩草影院久久久久| 视频在线观看国产精品| 92国产精品观看| 久久精品水蜜桃av综合天堂| 亚洲成人7777| 成人av片在线观看| 日韩欧美一级在线播放| 亚洲高清视频的网址| 成人黄色大片在线观看| 久久综合九色综合欧美亚洲|