Function parameters
17/35
Function parameters
Function parameters
Now our test script looks like this:
<?php
// x4.php
dl
(
"x4.so"
);
echo
foobar
(
"Go! "
,
3
);
?>
And its result is:
$ php x4.php Go! Go! Go!