news.php

来自「很棒的在线教学系统」· 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 validate(&$uri, $config, &$context) {        parent::validate($uri, $config, $context);        $uri->userinfo = null;        $uri->host     = null;        $uri->port     = null;        $uri->query    = null;        // typecode check needed on path        return true;    }    }

⌨️ 快捷键说明

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