[Zend_InputFilter] element index

Package indexes

All elements
e g i n t z _
_
top
Variable $_source
Zend_InputFilter::$_source in InputFilter.php
Method __construct
e
top
Page Exception.php
Exception.php in Exception.php
g
top
Method getAlnum
Zend_InputFilter::getAlnum() in InputFilter.php
Returns only the alphabetic characters and digits in value.
Method getAlpha
Zend_InputFilter::getAlpha() in InputFilter.php
Returns only the alphabetic characters in value.
Method getDigits
Returns only the digits in value. This differs from getInt().
Method getDir
Zend_InputFilter::getDir() in InputFilter.php
Returns dirname(value).
Method getInt
Zend_InputFilter::getInt() in InputFilter.php
Returns (int) value.
Method getPath
Zend_InputFilter::getPath() in InputFilter.php
Returns realpath(value).
Method getRaw
Zend_InputFilter::getRaw() in InputFilter.php
Returns value.
i
top
Page InputFilter.php
InputFilter.php in InputFilter.php
n
top
Method noPath
Zend_InputFilter::noPath() in InputFilter.php
Returns basename(value).
Method noTags
Zend_InputFilter::noTags() in InputFilter.php
Returns value with all tags removed.
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
Zend_InputFilter::testDate() in InputFilter.php
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
Zend_InputFilter::testHex() in InputFilter.php
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
Zend_InputFilter::testInt() in InputFilter.php
Returns value if it is a valid integer value, FALSE otherwise.
Method testIp
Zend_InputFilter::testIp() in InputFilter.php
Returns value if it is a valid IP format, FALSE otherwise.
Method testLessThan
Returns value if it is less than $max, FALSE otherwise.
Method testName
Zend_InputFilter::testName() in InputFilter.php
Returns value if it is a valid format for a person's name, FALSE otherwise.
Method testOneOf
Returns value if it is one of $allowed, FALSE otherwise.
Method testPhone
Returns value if it is a valid phone number format, FALSE otherwise. The optional second argument indicates the country.
Method testRegex
Returns value if it matches $pattern, FALSE otherwise. Uses preg_match() for the matching.
Method testUri
Zend_InputFilter::testUri() in InputFilter.php
Method testZip
Zend_InputFilter::testZip() in InputFilter.php
Returns value if it is a valid US ZIP, FALSE otherwise.
z
top
Class Zend_InputFilter
Zend_InputFilter in InputFilter.php
Class Zend_InputFilter_Exception
e g i n t z _