The ZF Framework filter filter uses example _php instances

Source: Internet
Author: User
Copy CodeThe code is as follows:
/* Simple use method and operation of filter () */

Require_once ("zend/loader.php");
string-to-lowercase classes and uppercase classes that introduce filter
Zend_loader::loadclass ("Zend_filter_stringtolower");
Zend_loader::loadclass ("Zend_filter_stringtoupper");
Instantiate string to lowercase class and go to uppercase class
$Filter = new Zend_filter_stringtolower ();
$Filter 2 = new Zend_filter_stringtoupper ();
Set the string to be converted
$Temp = ' Zhouwujie Zhouwujie ';
Conversion method Filter ();
$Result = Filter $Filter, $Temp);
$Result 2 = $Filter 2, filter ($TEMP);
Echo $Result;
echo $Result 2;
?>

The

copy Code code is as follows:
!--? PHP /* Filter using method and operation (filter chain) */
Require_once ("zend/loader.php");
Filter's filter chain is used to load filters and filter the method class
Zend_loader::loadclass ("Zend_filter");
Zend_loader::loadclass ("Zend_filter_htmlentities");
Zend_loader::loadclass ("Zend_filter_striptags");
//Instantiate filter after adding filter addfilter (new Filter Method class name ())
$Filter = new Zend_filter ();
$Filter//-> addfilter (New Zend_filter_htmlentities ());
-AddFilter (New Zend_filter_striptags ());
$String = "link";
$Result = $Filter Filter ($String);
Echo $Result;
?

Copy the Code code as follows:
/* Custom Filter */
Require_once ("zend/loader.php");
Zend_loader::loadclass ("Zend_filter_interface");
Class Myfilter implements Zend_filter_interface
{
Public Function filter ($value)
{
$List = Array (' Yellow ', ' bet ', ' poison ');
foreach ($List as $k = $v)
{
$value = Str_replace ($v, ' * ', $value);
}
return $value;
}
}
$Filter = new Myfilter ();
$String = ' This message is yellow content ';
$String 2 = ' He went to gamble today ';
$String 3 = ' He's taking drugs today ';
echo "Filter content
";
echo $Filter Filter ($String). "
";
echo $Filter Filter ($String 2). "
";
echo $Filter Filter ($String 3). "
";
?>

  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.