Example of the ZF Framework filter filter usage

Source: Internet
Author: User
Tags lowercase zend

  This article mainly introduces the ZF Framework filter filter Use example, the code has comments, the need for friends can refer to the following

  Code as follows: <?php/* Filter Simple use method and operation () * *   require_once ("zend/loader.php"); The string that introduces Filter to lowercase class and capitalization class Zend_loader::loadclass ("Zend_filter_stringtolower"); Zend_loader::loadclass ("Zend_filter_stringtoupper"); Instantiate the string to lowercase class and capitalization 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?>       code as follows: <?php/* Filter use method and operation (filter chain)/require_once ("zend/loader.php"); Filter filters are 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"); After instantiating the filter, add the filter addfilter (new Filter Method class name ()) $Filter = new Zend_filter (); $Filter//-> addfilter (New Zend_filter_htmlentities ());  -> addfilter (New Zend_filter_striptags ()); $String = "<a href= ' # ' > Link </a>"; $Result = $Filter-> Filter ($String); echo $Result?>     code as follows: <?php/* 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);  }   R Eturn $value; &NBSP} $Filter = new Myfilter (); $String = ' This message is yellow content '; $String 2 = ' He went gambling today '; $String 3 = ' He went on drugs today '; echo "

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.