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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? lob.php

?? This is the script which used on 10minutemail.com for temporary email.
?? PHP
字號:
<?php
// +----------------------------------------------------------------------+
// | PHP version 5                                                        |
// +----------------------------------------------------------------------+
// | Copyright (c) 1998-2006 Manuel Lemos, Tomas V.V.Cox,                 |
// | Stig. S. Bakken, Lukas Smith                                         |
// | All rights reserved.                                                 |
// +----------------------------------------------------------------------+
// | MDB2 is a merge of PEAR DB and Metabases that provides a unified DB  |
// | API as well as database abstraction for PHP applications.            |
// | This LICENSE is in the BSD license style.                            |
// |                                                                      |
// | Redistribution and use in source and binary forms, with or without   |
// | modification, are permitted provided that the following conditions   |
// | are met:                                                             |
// |                                                                      |
// | Redistributions of source code must retain the above copyright       |
// | notice, this list of conditions and the following disclaimer.        |
// |                                                                      |
// | Redistributions in binary form must reproduce the above copyright    |
// | notice, this list of conditions and the following disclaimer in the  |
// | documentation and/or other materials provided with the distribution. |
// |                                                                      |
// | Neither the name of Manuel Lemos, Tomas V.V.Cox, Stig. S. Bakken,    |
// | Lukas Smith nor the names of his contributors may be used to endorse |
// | or promote products derived from this software without specific prior|
// | written permission.                                                  |
// |                                                                      |
// | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS  |
// | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT    |
// | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS    |
// | FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE      |
// | REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,          |
// | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
// | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS|
// |  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED  |
// | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT          |
// | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY|
// | WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE          |
// | POSSIBILITY OF SUCH DAMAGE.                                          |
// +----------------------------------------------------------------------+
// | Author: Lukas Smith <smith@pooteeweet.org>                           |
// +----------------------------------------------------------------------+
//
// $Id: LOB.php,v 1.34 2006/10/25 11:52:21 lsmith Exp $

/**
 * @package  MDB2
 * @category Database
 * @author   Lukas Smith <smith@pooteeweet.org>
 */

require_once 'MDB2.php';

/**
 * MDB2_LOB: user land stream wrapper implementation for LOB support
 *
 * @package MDB2
 * @category Database
 * @author Lukas Smith <smith@pooteeweet.org>
 */
class MDB2_LOB
{
    /**
     * contains the key to the global MDB2 instance array of the associated
     * MDB2 instance
     *
     * @var integer
     * @access protected
     */
    var $db_index;

    /**
     * contains the key to the global MDB2_LOB instance array of the associated
     * MDB2_LOB instance
     *
     * @var integer
     * @access protected
     */
    var $lob_index;

    // {{{ stream_open()

    /**
     * open stream
     *
     * @param string specifies the URL that was passed to fopen()
     * @param string the mode used to open the file
     * @param int holds additional flags set by the streams API
     * @param string not used
     *
     * @return bool
     * @access public
     */
    function stream_open($path, $mode, $options, &$opened_path)
    {
        if (!preg_match('/^rb?\+?$/', $mode)) {
            return false;
        }
        $url = parse_url($path);
        if (empty($url['host'])) {
            return false;
        }
        $this->db_index = (int)$url['host'];
        if (!isset($GLOBALS['_MDB2_databases'][$this->db_index])) {
            return false;
        }
        $db =& $GLOBALS['_MDB2_databases'][$this->db_index];
        $this->lob_index = (int)$url['user'];
        if (!isset($db->datatype->lobs[$this->lob_index])) {
            return false;
        }
        return true;
    }
    // }}}

    // {{{ stream_read()

    /**
     * read stream
     *
     * @param int number of bytes to read
     *
     * @return string
     * @access public
     */
    function stream_read($count)
    {
        if (isset($GLOBALS['_MDB2_databases'][$this->db_index])) {
            $db =& $GLOBALS['_MDB2_databases'][$this->db_index];
            $db->datatype->_retrieveLOB($db->datatype->lobs[$this->lob_index]);

            $data = $db->datatype->_readLOB($db->datatype->lobs[$this->lob_index], $count);
            $length = strlen($data);
            if ($length == 0) {
                $db->datatype->lobs[$this->lob_index]['endOfLOB'] = true;
            }
            $db->datatype->lobs[$this->lob_index]['position'] += $length;
            return $data;
        }
    }
    // }}}

    // {{{ stream_write()

    /**
     * write stream, note implemented
     *
     * @param string data
     *
     * @return int
     * @access public
     */
    function stream_write($data)
    {
        return 0;
    }
    // }}}

    // {{{ stream_tell()

    /**
     * return the current position
     *
     * @return int current position
     * @access public
     */
    function stream_tell()
    {
        if (isset($GLOBALS['_MDB2_databases'][$this->db_index])) {
            $db =& $GLOBALS['_MDB2_databases'][$this->db_index];
            return $db->datatype->lobs[$this->lob_index]['position'];
        }
    }
    // }}}

    // {{{ stream_eof()

    /**
     * Check if stream reaches EOF
     *
     * @return bool
     * @access public
     */
    function stream_eof()
    {
        if (!isset($GLOBALS['_MDB2_databases'][$this->db_index])) {
            return true;
        }

        $db =& $GLOBALS['_MDB2_databases'][$this->db_index];
        $result = $db->datatype->_endOfLOB($db->datatype->lobs[$this->lob_index]);
        if (version_compare(phpversion(), "5.0", ">=")
            && version_compare(phpversion(), "5.1", "<")
        ) {
            return !$result;
        }
        return $result;
    }
    // }}}

    // {{{ stream_seek()

    /**
     * Seek stream, not implemented
     *
     * @param int offset
     * @param int whence
     *
     * @return bool
     * @access public
     */
    function stream_seek($offset, $whence)
    {
        return false;
    }
    // }}}

    // {{{ stream_stat()

    /**
     * return information about stream
     *
     * @access public
     */
    function stream_stat()
    {
        if (isset($GLOBALS['_MDB2_databases'][$this->db_index])) {
            $db =& $GLOBALS['_MDB2_databases'][$this->db_index];
            return array(
              'db_index' => $this->db_index,
              'lob_index' => $this->lob_index,
            );
        }
    }
    // }}}

    // {{{ stream_close()

    /**
     * close stream
     *
     * @access public
     */
    function stream_close()
    {
        if (isset($GLOBALS['_MDB2_databases'][$this->db_index])) {
            $db =& $GLOBALS['_MDB2_databases'][$this->db_index];
            if (isset($db->datatype->lobs[$this->lob_index])) {
                $db->datatype->_destroyLOB($db->datatype->lobs[$this->lob_index]);
                unset($db->datatype->lobs[$this->lob_index]);
            }
        }
    }
    // }}}
}

// register streams wrapper
if (!stream_wrapper_register("MDB2LOB", "MDB2_LOB")) {
    MDB2::raiseError();
    return false;
}

?>

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
av在线不卡观看免费观看| 国产91高潮流白浆在线麻豆| 国产日产欧美一区| 欧美性一区二区| 丁香婷婷综合网| 免费日韩伦理电影| 亚洲午夜激情网页| 国产精品亲子乱子伦xxxx裸| 91精品在线观看入口| 色欧美片视频在线观看在线视频| 久久99国产精品麻豆| 香蕉乱码成人久久天堂爱免费| 国产精品美女一区二区在线观看| 日韩久久久久久| 欧美日韩的一区二区| 91蜜桃网址入口| 成人av免费在线观看| 国产一区二区三区久久久| 免费在线看一区| 亚洲成人先锋电影| 亚洲综合图片区| 亚洲视频免费在线观看| 欧美极品aⅴ影院| 久久综合色一综合色88| 日韩美一区二区三区| 欧美一区二区免费观在线| 欧美日韩国产首页| 欧美日韩精品一区二区三区| 色94色欧美sute亚洲线路一久 | 亚洲欧美一区二区在线观看| 久久夜色精品国产欧美乱极品| 欧美福利视频一区| 欧美三级日韩在线| 欧美日韩黄色一区二区| 欧美人与性动xxxx| 91精品国产一区二区三区香蕉| 欧美日韩在线直播| 欧美日本乱大交xxxxx| 欧美日韩国产成人在线91| 欧美性猛交一区二区三区精品| 色婷婷av一区| 欧美三级在线视频| 欧美一级久久久久久久大片| 日韩一级片网站| 久久精品这里都是精品| 欧美极品xxx| 亚洲图片激情小说| 亚洲午夜电影网| 日本在线不卡视频| 久久精品国产一区二区| 国产在线播精品第三| 国产一区二区久久| 成人福利视频网站| 欧美亚洲国产一区二区三区 | 国产精品影视天天线| 国产成人av福利| 91一区一区三区| 欧美色图天堂网| 欧美成人猛片aaaaaaa| 久久久影视传媒| 亚洲欧美偷拍卡通变态| 亚洲福利视频一区二区| 男女性色大片免费观看一区二区| 狂野欧美性猛交blacked| 国产999精品久久久久久绿帽| av电影天堂一区二区在线 | 中文字幕av资源一区| 亚洲精选视频在线| 日韩成人伦理电影在线观看| 国产精品综合久久| 99国产精品视频免费观看| 欧美三级日韩三级| 2020国产精品| 有坂深雪av一区二区精品| 免费成人你懂的| 99精品国产视频| 日韩欧美中文字幕制服| 中文字幕一区二| 日韩成人一级大片| heyzo一本久久综合| 欧美欧美欧美欧美首页| 久久精品无码一区二区三区| 一区二区三区日本| 国产精品一区二区在线播放| 在线观看免费视频综合| 欧美成人性战久久| 亚洲综合激情小说| 国产成人免费视| 欧美绝品在线观看成人午夜影视| 久久亚洲一区二区三区明星换脸| 一区二区三区色| 懂色中文一区二区在线播放| 欧美日韩国产三级| 中文字幕亚洲不卡| 国产真实乱子伦精品视频| 日本道色综合久久| 国产拍揄自揄精品视频麻豆| 亚洲成av人片在www色猫咪| 成人黄色小视频在线观看| 日韩欧美国产一二三区| 亚洲国产日韩精品| 91婷婷韩国欧美一区二区| 26uuu国产日韩综合| 五月天久久比比资源色| 97se狠狠狠综合亚洲狠狠| 久久久午夜精品理论片中文字幕| 亚瑟在线精品视频| 一本久久a久久免费精品不卡| 国产日韩欧美精品在线| 麻豆精品久久精品色综合| 精品污污网站免费看| 国产精品福利一区| 风流少妇一区二区| 欧美精品一区二区三区很污很色的| 午夜欧美一区二区三区在线播放| 成人一区在线观看| 久久九九全国免费| 国产精品自在在线| 久久无码av三级| 麻豆成人久久精品二区三区红 | 日韩高清不卡一区二区三区| 在线视频国内自拍亚洲视频| 中文字幕日韩精品一区| 国产99久久久久久免费看农村| 精品成人在线观看| 激情综合网av| 欧美精品一区二区三区蜜臀| 美女网站色91| 欧美xfplay| 久久狠狠亚洲综合| 日韩免费视频线观看| 九九热在线视频观看这里只有精品| 欧美一级久久久久久久大片| 美女爽到高潮91| 欧美va日韩va| 国产综合色视频| 久久久久久久久久久久电影| 国产一区久久久| 欧美高清一级片在线观看| 高清不卡在线观看av| 国产精品伦一区| 99久久精品一区二区| 伊人性伊人情综合网| 欧美日韩在线免费视频| 天堂成人国产精品一区| 欧美一区二区三区视频免费播放| 日本三级韩国三级欧美三级| 日韩午夜在线播放| 国产乱色国产精品免费视频| 国产无人区一区二区三区| 成人网在线播放| 亚洲精品视频在线观看免费| 欧美午夜视频网站| 久久99精品视频| 亚洲国产精品二十页| 91在线国产观看| 亚洲成人av在线电影| 日韩美女一区二区三区四区| 大胆欧美人体老妇| 亚洲综合在线免费观看| 日韩一区二区三区av| 国产精品一品二品| 亚洲欧美日韩国产另类专区 | 欧美日韩小视频| 美洲天堂一区二卡三卡四卡视频| 久久精品亚洲一区二区三区浴池| 91小视频在线| 日韩精品一二三四| 国产三级精品三级在线专区| 色偷偷久久人人79超碰人人澡| 日韩一区精品视频| 国产精品丝袜一区| 欧美日本韩国一区| 成人午夜看片网址| 五月天国产精品| 欧美高清在线一区二区| 欧美日韩极品在线观看一区| 国产福利一区在线| 性欧美大战久久久久久久久| 国产日产精品1区| 欧美日韩激情一区二区三区| 国产成人丝袜美腿| 亚洲电影在线播放| 欧美国产激情二区三区 | 日韩一区在线免费观看| 欧美日韩大陆在线| 99久久99精品久久久久久 | 人人爽香蕉精品| 亚洲色图欧洲色图| 久久综合久色欧美综合狠狠| 色哟哟一区二区| 国产精品一二二区| 日本亚洲电影天堂| 亚洲天堂精品视频| 26uuu欧美| 日韩女优电影在线观看| 色婷婷激情一区二区三区| 国产麻豆精品久久一二三| 日韩中文字幕亚洲一区二区va在线 | 久久久美女艺术照精彩视频福利播放|