?? nntp.php
字號(hào):
<?phprequire_once 'HTMLPurifier/URIScheme.php';/** * Validates nntp (Network News Transfer Protocol) as defined by generic RFC 1738 */class HTMLPurifier_URIScheme_nntp extends HTMLPurifier_URIScheme { var $default_port = 119; var $browsable = false; function validate(&$uri, $config, &$context) { parent::validate($uri, $config, $context); $uri->userinfo = null; $uri->query = null; return true; } }
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -