Class StringSuffix

Summary

Fully Qualified Name: Zend\Filter\StringSuffix
Extends: AbstractFilter

Description

Methods

Name Description Defined By
__construct() StringSuffix
__invoke() Invoke filter as a command AbstractFilter
filter() {@inheritdoc} StringSuffix
getOptions() Retrieve options representing object state AbstractFilter
getSuffix() Returns the suffix string, which is appended at the end of the input value StringSuffix
hasPcreUnicodeSupport() AbstractFilter
setOptions() AbstractFilter
setSuffix() Set the suffix string StringSuffix

Method Details

__construct()

Parameter Name Type Description
$options string|array|\Traversable

Returns:

__invoke()

Invoke filter as a command

Proxies to {@link filter()}

Parameter Name Type Description
$value mixed

Returns: mixed

filter()

{@inheritdoc}

Parameter Name Type Description
$value

Returns:

getOptions()

Retrieve options representing object state

Returns: array

getSuffix()

Returns the suffix string, which is appended at the end of the input value

Returns: string

hasPcreUnicodeSupport()

Returns: bool

setOptions()

Parameter Name Type Description
$options array|\Traversable

Returns: self

setSuffix()

Set the suffix string

Parameter Name Type Description
$suffix string

Returns: self

Top