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

📄 doctype.php

📁 很棒的在线教学系统
💻 PHP
字号:
<?php/** * Represents a document type, contains information on which modules * need to be loaded. * @note This class is inspected by Printer_HTMLDefinition->renderDoctype. *       If structure changes, please update that function. */class HTMLPurifier_Doctype{    /**     * Full name of doctype     */    var $name;        /**     * List of standard modules (string identifiers or literal objects)     * that this doctype uses     */    var $modules = array();        /**     * List of modules to use for tidying up code     */    var $tidyModules = array();        /**     * Is the language derived from XML (i.e. XHTML)?     */    var $xml = true;        /**     * List of aliases for this doctype     */    var $aliases = array();        /**     * Public DTD identifier     */    var $dtdPublic;        /**     * System DTD identifier     */    var $dtdSystem;        function HTMLPurifier_Doctype($name = null, $xml = true, $modules = array(),        $tidyModules = array(), $aliases = array(), $dtd_public = null, $dtd_system = null    ) {        $this->name         = $name;        $this->xml          = $xml;        $this->modules      = $modules;        $this->tidyModules  = $tidyModules;        $this->aliases      = $aliases;        $this->dtdPublic    = $dtd_public;        $this->dtdSystem    = $dtd_system;    }        /**     * Clones the doctype, use before resolving modes and the like     */    function copy() {        return unserialize(serialize($this));    }}

⌨️ 快捷键说明

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