0 votes
in PHP by
Explain PHP parameterized functions.

1 Answer

0 votes
by

PHP parameterized functions are functions with parameters. You can pass any number of parameters inside a function. These given parameters act as variables inside your function. They are specified inside the parentheses, after the function name. Output depends upon dynamic values passed as parameters into the function.

...