Class StringPrefix

Summary

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

Description

Methods

Name Description Defined By
__construct() StringPrefix
__invoke() Invoke filter as a command AbstractFilter
filter() {@inheritdoc} StringPrefix
getOptions() Retrieve options representing object state AbstractFilter
getPrefix() Returns the prefix string, which is appended at the beginning of the input value StringPrefix
hasPcreUnicodeSupport() AbstractFilter
setOptions() AbstractFilter
setPrefix() Set the prefix string StringPrefix

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

getPrefix()

Returns the prefix string, which is appended at the beginning of the input value

Returns: string

hasPcreUnicodeSupport()

Returns: bool

setOptions()

Parameter Name Type Description
$options array|\Traversable

Returns: self

setPrefix()

Set the prefix string

Parameter Name Type Description
$prefix string

Returns: self

Top