Functions in PHP
Using the example of var_dump
we encounter
functions. They allow us to perform
certain actions. A function consists of a name
and parentheses written after that
name. Inside these parentheses, we should write
function parameters. In our case,
the parameter is the text that is displayed
on the screen. There are functions that require
not one parameter, as we have now,
but several parameters. In this case, these
parameters are written separated by commas.