Class Null

Summary

Fully Qualified Name: Zend\Filter\Null
Extends: ToNull

Description

Stub class for backwards compatibility.

Since PHP 7 adds "null" as a reserved keyword, we can no longer have a class named that and retain PHP 7 compatibility. The original class has been renamed to "ToNull", and this class is now an extension of it. It raises an E_USER_DEPRECATED to warn users to migrate.

Methods

Name Description Defined By
__construct() {@inheritdoc} Null
__invoke() Invoke filter as a command AbstractFilter
filter() Defined by Zend\Filter\FilterInterface ToNull
getOptions() Retrieve options representing object state AbstractFilter
getType() Returns defined boolean types ToNull
hasPcreUnicodeSupport() AbstractFilter
setOptions() AbstractFilter
setType() Set boolean types ToNull

Method Details

__construct()

{@inheritdoc}

Parameter Name Type Description
$typeOrOptions

Returns:

__invoke()

Invoke filter as a command

Proxies to {@link filter()}

Parameter Name Type Description
$value mixed

Returns: mixed

filter()

Defined by Zend\Filter\FilterInterface

Returns null representation of $value, if value is empty and matches types that should be considered null.

Parameter Name Type Description
$value string

Returns: string

getOptions()

Retrieve options representing object state

Returns: array

getType()

Returns defined boolean types

Returns: int

hasPcreUnicodeSupport()

Returns: bool

setOptions()

Parameter Name Type Description
$options array|\Traversable

Returns: self

setType()

Set boolean types

Parameter Name Type Description
$type int|array

Returns: self

Top