The ZF Framework filter filter uses the example _php instance

Source: Internet
Author: User
Tags lowercase zend

Copy Code 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");
Instantiating a string to a lowercase class and a 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;
?>

Copy Code code as follows:

<?php
/* Filter use method and operation (filter chain) * *
Require_once ("zend/loader.php");
Filter the filter chain of the use of load filter and filter method class
Zend_loader::loadclass ("Zend_filter");
Zend_loader::loadclass ("Zend_filter_htmlentities");
Zend_loader::loadclass ("Zend_filter_striptags");
Add filter addfilter After instantiating filter (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;
?>

Copy Code 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);
}
return $value;
}
}
$Filter = new Myfilter ();
$String = ' This message is yellow content ';
$String 2 = ' He went gambling today ';
$String 3 = ' He went on drugs today ';
echo "echo $Filter-> Filter ($String). "<br>";
echo $Filter-> Filter ($String 2). "<br>";
echo $Filter-> Filter ($String 3). "<br>";
?>

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.