研读:
源代码意思大概是先实现Zend_Filter_Interface接口。
定义一个私有变量$_encoding,初始值为null,一般私有变量都是以_下划线开头。
然后通过构造函数进行初始化工作,设置encoding。
至于这个encoing属性是作何用的,我就不大清楚了,反正为了它,源码写了不少代码。
类中有三个方法,一个是setEncoding,一个是getEncoding,一个主要功能的filter。有两个方法都是为了encoding来写的。
在构造函数中使用setEncoding方法直接用$this->setEncoding()就可。就可以把私有属性设置好值了。
然后根据私有属性的内容来选择使用什么方法来使得字母变小写。
我去,这个类考虑的东西还真够多的。其实核心代码就那两句,strtolower((string) $value)。
这个类很酷,我从来没用过私有属性。考虑问题也没有作者那么全面,各种验证,各种情况考虑。比如,
从构造函数中就可以看出他考虑问题的全面性。
if ($options instanceof Zend_Config) {
$options = $options->toArray();
} else if (!is_array($options)) {
$options = func_get_args();
$temp = array();
if (!empty($options)) {
$temp['encoding'] = array_shift($options);
}
$options = $temp;
}
if (!array_key_exists('encoding', $options) && function_exists('mb_internal_encoding')) {
$options['encoding'] = mb_internal_encoding();
}
if (array_key_exists('encoding', $options)) {
$this->setEncoding($options['encoding']);
}
总的来说还是值得佩服的。
下面谈谈过滤器链,它的作用是将多个过滤器串联起来配合使用。过滤器链就是多个过滤器的一个连接。在对指定的内容进行过滤时,
每个过滤器将按照其顺序分别进行过滤或者转化操作。当所有的过滤操作都执行完毕时,过滤器链返回最终的过滤结果。
听起来蛮有趣的啊!
具体实现步骤是什么呢?
首先要为类Zend_Filter实例化一个对象,然后通过该实例的addFilter()方法向过滤器链中添加过滤器。
下面通过示例演示如何使用过滤器链对数据进行多重过滤及转化。
代码:
<?php
require_once 'Zend/Filter.php'; //加载Zend_Filter类
require_once 'Zend/Filter/Alpha.php'; //加载Zend_Filter_Alpha子类
require_once 'Zend/Filter/StringToUpper.php'; //加载Zend_Filter_StringToUpper子类
$filterChain = new Zend_Filter(); //创建过滤器链
$filterChain ->addFilter(new Zend_Filter_Alpha(" "))
->addFilter(new Zend_Filter_StringToUpper());//向过滤器链中添加过滤器
$temp1 = "12345asdf67asdfasdf";
$temp2 = "#$%^!@fffff";
$temp3 = "Welcome to Bei Jing";
echo "内容:".$temp1."<p>经过过滤后为:";
echo $filterChain->filter($temp1);
echo "<p>";
echo "内容:".$temp2."<p>经过过滤后为:";
echo $filterChain->filter($temp2);
echo "<p>";
echo "内容:".$temp3."<p>经过过滤后为:";
echo $filterChain->filter($temp3);
echo "<p>";







