news.php

来自「基于Php和Mysql的项目管理软件」· PHP 代码 · 共 24 行

PHP
24
字号
<?phprequire_once 'HTMLPurifier/URIScheme.php';/** * Validates news (Usenet) as defined by generic RFC 1738 */class HTMLPurifier_URIScheme_news extends HTMLPurifier_URIScheme {        var $browsable = false;        function validateComponents(        $userinfo, $host, $port, $path, $query, $config, &$context    ) {        list($userinfo, $host, $port, $path, $query) =             parent::validateComponents(                $userinfo, $host, $port, $path, $query, $config, $context );        // typecode check needed on path        return array(null, null, null, $path, null);    }    }?>

⌨️ 快捷键说明

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