Optional function parameters in PHP
PHP's functions can have optional parameters. Default value of that variable will be specified after the equal sign. If a value is not passed to that function, than default value will be used, if a value is passed then this value will be used instead the default one.
Comments
Post a Comment