null
null ( parameters ... );
This function does nothing, but is otherwise useful:
Indirect parameter passing is disabled
min. 0
No. | Type | Description |
---|---|---|
Any input |
all types | Parameter Any valid and invalid parameters. They will be ignored. |
null; // No effect
null (a, 1, true); // No effect
echo( null( ) ); // Outputs '# void value #'
echo( null( a, 1, true ) ); // Outputs '# void value #'
# Invalid Value #
# Invalid Value #