⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ftp.php

📁 基于Php和Mysql的项目管理软件
💻 PHP
字号:
<?phprequire_once 'HTMLPurifier/URIScheme.php';/** * Validates ftp (File Transfer Protocol) URIs as defined by generic RFC 1738. */class HTMLPurifier_URIScheme_ftp extends HTMLPurifier_URIScheme {        var $default_port = 21;    var $browsable = true; // usually        function validateComponents(        $userinfo, $host, $port, $path, $query, $config, &$context    ) {        list($userinfo, $host, $port, $path, $query) =             parent::validateComponents(                $userinfo, $host, $port, $path, $query, $config, $context );        $semicolon_pos = strrpos($path, ';'); // reverse        if ($semicolon_pos !== false) {            // typecode check            $type = substr($path, $semicolon_pos + 1); // no semicolon            $path = substr($path, 0, $semicolon_pos);            $type_ret = '';            if (strpos($type, '=') !== false) {                // figure out whether or not the declaration is correct                list($key, $typecode) = explode('=', $type, 2);                if ($key !== 'type') {                    // invalid key, tack it back on encoded                    $path .= '%3B' . $type;                } elseif ($typecode === 'a' || $typecode === 'i' || $typecode === 'd') {                    $type_ret = ";type=$typecode";                }            } else {                $path .= '%3B' . $type;            }            $path = str_replace(';', '%3B', $path);            $path .= $type_ret;        }        return array($userinfo, $host, $port, $path, null);    }    }?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -