当前位置:  开发笔记 > 编程语言 > 正文

使用Zend_Loader包含HTMLpurifier

如何解决《使用Zend_Loader包含HTMLpurifier》经验,为你挑选了1个好方法。

我想将HTMLpurifier与Zend Framework结合使用.我想用Zend_Loader加载Class及其文件.你会怎么包括它?您是否只使用HTMLPurifier.auto.php或者您是否知道更好的方法?



1> Sonny..:

我在我的Zend Framework项目中使用HTML Purifier作为过滤器.这是我班级的改进版本:

require_once 'HTMLPurifier.includes.php';
require_once 'HTMLPurifier.autoload.php';

class My_Filter_HtmlPurifier implements Zend_Filter_Interface
{
    protected $_htmlPurifier = null;

    public function __construct($options = null)
    {
        // set up configuration
        $config = HTMLPurifier_Config::createDefault();
        $config->set('HTML.DefinitionID', 'My Filter');
        $config->set('HTML.DefinitionRev', 1); // increment when configuration changes
        // $config->set('Cache.DefinitionImpl', null); // comment out after finalizing the config

        // Doctype
        $config->set('HTML.Doctype', 'XHTML 1.0 Transitional');

        // configure caching
        $cachePath = APPLICATION_PATH . '/../cache/htmlpurifier';
        if (!is_dir($cachePath)) {
            mkdir($cachePath, 0755, true);
        }
        $cachePath = realpath($cachePath);
        $config->set('Cache.SerializerPath', $cachePath);

        if (!is_null($options)) {
            //$config = HTMLPurifier_Config::createDefault();
            foreach ($options as $option) {
                $config->set($option[0], $option[1], $option[2]);
            }
        }

        $this->_htmlPurifier = new HTMLPurifier($config);
    }

    public function filter($value)
    {
        return $this->_htmlPurifier->purify($value);
    }
}


你有没有从Padraic Brady那里上课?http://blog.astrumfutura.com/2008/05/example-zend-framework-blog-application-tutorial-part-8-creating-and-editing-blog-entries-with-a-dash-of-htmlpurifier/
推荐阅读
手机用户2502851955
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有