[Zend_Filter] element index

Package indexes

All elements
a b d e f g h i k n o r s t z _
_
top
Variable $_attributesAllowed
Array of allowed attributes for all allowed tags
Variable $_charList
List of characters provided to the trim() function
Variable $_charSet
Corresponds to third htmlentities() argument
Variable $_filters
Filter chain
Variable $_quoteStyle
Corresponds to second htmlentities() argument
Variable $_tagsAllowed
Array of allowed tags and allowed attributes for each allowed tag
Method _filterTag
Filters a single tag against the current option settings
Method __construct
Sets the filter options
Method __construct
Sets filter options
Method __construct
Sets filter options
Variable $_source
Input data source
Method __construct
Stores a reference to the data source array and removes the reference $source when $strict is true
a
top
Method addFilter
Adds a filter to the end of the chain
Page Alnum.php
Alnum.php in Alnum.php
Page Alpha.php
Alpha.php in Alpha.php
b
top
Page BaseName.php
BaseName.php in BaseName.php
d
top
Page Digits.php
Digits.php in Digits.php
Page Dir.php
Dir.php in Dir.php
e
top
Page Exception.php
Exception.php in Exception.php
f
top
Method filter
Returns the result of filtering $value
Method filter
Defined by Zend_Filter_Interface
Method filter
Defined by Zend_Filter_Interface
Method filter
Defined by Zend_Filter_Interface
Method filter
Defined by Zend_Filter_Interface
Method filter
Defined by Zend_Filter_Interface
Method filter
Defined by Zend_Filter_Interface
Method filter
Zend_Filter::filter() in Filter.php
Returns $value filtered through each filter in the chain
Method filter
Defined by Zend_Filter_Interface
Method filter
Defined by Zend_Filter_Interface
Method filter
Defined by Zend_Filter_Interface
Method filter
Defined by Zend_Filter_Interface
Method filter
Defined by Zend_Filter_Interface
Page Filter.php
Filter.php in Filter.php
g
top
Method getAlnum
Returns only the alphabetic characters and digits in value.
Method getAlpha
Returns only the alphabetic characters in value.
Method getAttributesAllowed
Returns the attributesAllowed option
Method getCharList
Returns the charList option
Method getCharSet
Returns the charSet option
Method getDigits
Returns only the digits in value. This differs from getInt().
Method getDir
Zend_Filter::getDir() in Filter.php
Returns dirname(value).
Method getInt
Zend_Filter::getInt() in Filter.php
Returns (int) value.
Method getPath
Returns realpath(value).
Method getQuoteStyle
Returns the quoteStyle option
Method getTagsAllowed
Returns the tagsAllowed option
Method getAlnum
Returns only the alphabetic characters and digits in value.
Method getAlpha
Returns only the alphabetic characters in value.
Method getDigits
Returns only the digits in value. This differs from getInt().
Method getDir
Returns dirname(value).
Method getInt
Returns (int) value.
Method getPath
Returns realpath(value).
Method getRaw
Returns value.
h
top
Page HtmlEntities.php
HtmlEntities.php in HtmlEntities.php
i
top
Method isAlnum
Returns TRUE if every character is alphabetic or a digit, FALSE otherwise.
Method isAlpha
Returns TRUE if every character is alphabetic, FALSE otherwise.
Method isBetween
Returns TRUE if value is greater than or equal to $min and less than or equal to $max, FALSE otherwise. If $inc is set to FALSE, then the value must be strictly greater than $min and strictly less than $max.
Method isCcnum
Returns TRUE if it is a valid credit card number format.
Method isDate
Zend_Filter::isDate() in Filter.php
Returns TRUE if value is a valid date, FALSE otherwise.
Method isDigits
Returns TRUE if every character is a digit, FALSE otherwise.
Method isEmail
Returns TRUE if value is a valid email format, FALSE otherwise.
Method isFloat
Returns TRUE if value is a valid float value, FALSE otherwise.
Method isGreaterThan
Returns TRUE if value is greater than $min, FALSE otherwise.
Method isHex
Zend_Filter::isHex() in Filter.php
Returns TRUE if value is a valid hexadecimal format, FALSE otherwise.
Method isHostname
Returns TRUE if value is a valid hostname, FALSE otherwise.
Method isInt
Zend_Filter::isInt() in Filter.php
Returns TRUE if value is a valid integer value, FALSE otherwise.
Method isIp
Zend_Filter::isIp() in Filter.php
Returns TRUE if value is a valid IP format, FALSE otherwise.
Method isLessThan
Returns TRUE if value is less than $max, FALSE otherwise.
Method isOneOf
Returns TRUE if value is one of $allowed, FALSE otherwise.
Method isRegex
Returns TRUE if value matches $pattern, FALSE otherwise. Uses preg_match() for the matching.
Page Int.php
Int.php in Int.php
Page Interface.php
Interface.php in Interface.php
Page Input.php
Input.php in Input.php
k
top
Method keyExists
Checks if a key exists
n
top
Method noPath
Zend_Filter::noPath() in Filter.php
Returns basename(value).
Method noTags
Zend_Filter::noTags() in Filter.php
Returns value with all tags removed.
Method noPath
Returns basename(value).
Method noTags
Returns value with all tags removed.
o
top
Class Constant HOST_ALLOW_ALL
Class Constant HOST_ALLOW_DNS
Options for isHostname() that specify which types of hostnames to allow.
Class Constant HOST_ALLOW_IP
Class Constant HOST_ALLOW_LOCAL
r
top
Page RealPath.php
RealPath.php in RealPath.php
s
top
Method setAttributesAllowed
Sets the attributesAllowed option
Method setCharList
Sets the charList option
Method setCharSet
Sets the charSet option
Method setQuoteStyle
Sets the quoteStyle option
Method setTagsAllowed
Sets the tagsAllowed option
Page StringToLower.php
StringToLower.php in StringToLower.php
Page StringTrim.php
StringTrim.php in StringTrim.php
Page StripTags.php
StripTags.php in StripTags.php
t
top
Method testAlnum
Returns value if every character is alphabetic or a digit, FALSE otherwise.
Method testAlpha
Returns value if every character is alphabetic, FALSE otherwise.
Method testBetween
Returns value if it is greater than or equal to $min and less than or equal to $max, FALSE otherwise. If $inc is set to FALSE, then the value must be strictly greater than $min and strictly less than $max.
Method testCcnum
Returns value if it is a valid credit card number format. The optional second argument allows developers to indicate the type.
Method testDate
Returns $value if it is a valid date, FALSE otherwise. The date is required to be in ISO 8601 format.
Method testDigits
Returns value if every character is a digit, FALSE otherwise.
Method testEmail
Returns value if it is a valid email format, FALSE otherwise.
Method testFloat
Returns value if it is a valid float value, FALSE otherwise.
Method testGreaterThan
Returns value if it is greater than $min, FALSE otherwise.
Method testHex
Returns value if it is a valid hexadecimal format, FALSE otherwise.
Method testHostname
Returns value if it is a valid hostname, FALSE otherwise.
Method testInt
Returns value if it is a valid integer value, FALSE otherwise.
Method testIp
Returns value if it is a valid IP format, FALSE otherwise.
Method testLessThan
Returns value if it is less than $max, FALSE otherwise.
Method testOneOf
Returns value if it is one of $allowed, FALSE otherwise.
Method testRegex
Returns value if it matches $pattern, FALSE otherwise. Uses preg_match() for the matching.
z
top
Class Zend_Filter
Zend_Filter in Filter.php
Class Zend_Filter_Alnum
Zend_Filter_Alnum in Alnum.php
Class Zend_Filter_Alpha
Zend_Filter_Alpha in Alpha.php
Class Zend_Filter_BaseName
Zend_Filter_BaseName in BaseName.php
Class Zend_Filter_Digits
Zend_Filter_Digits in Digits.php
Class Zend_Filter_Dir
Zend_Filter_Dir in Dir.php
Class Zend_Filter_Exception
Zend_Filter_Exception in Exception.php
Class Zend_Filter_HtmlEntities
Zend_Filter_HtmlEntities in HtmlEntities.php
Class Zend_Filter_Int
Zend_Filter_Int in Int.php
Class Zend_Filter_Interface
Zend_Filter_Interface in Interface.php
Class Zend_Filter_RealPath
Zend_Filter_RealPath in RealPath.php
Class Zend_Filter_StringToLower
Zend_Filter_StringToLower in StringToLower.php
Class Zend_Filter_StringTrim
Zend_Filter_StringTrim in StringTrim.php
Class Zend_Filter_StripTags
Zend_Filter_StripTags in StripTags.php
Class Zend_Filter_Input
Zend_Filter_Input in Input.php
a b d e f g h i k n o r s t z _