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

📄 core.php

📁 基于Php和Mysql的项目管理软件
💻 PHP
字号:
<?phprequire_once 'HTMLPurifier/Strategy/Composite.php';require_once 'HTMLPurifier/Strategy/RemoveForeignElements.php';require_once 'HTMLPurifier/Strategy/MakeWellFormed.php';require_once 'HTMLPurifier/Strategy/FixNesting.php';require_once 'HTMLPurifier/Strategy/ValidateAttributes.php';/** * Core strategy composed of the big four strategies. */class HTMLPurifier_Strategy_Core extends HTMLPurifier_Strategy_Composite{        function HTMLPurifier_Strategy_Core() {        $this->strategies[] = new HTMLPurifier_Strategy_RemoveForeignElements();        $this->strategies[] = new HTMLPurifier_Strategy_MakeWellFormed();        $this->strategies[] = new HTMLPurifier_Strategy_FixNesting();        $this->strategies[] = new HTMLPurifier_Strategy_ValidateAttributes();    }    }?>

⌨️ 快捷键说明

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