I have a PHP script check.php with a function
<?php
function checkValues($arg1, $arg2){
...
}
?>
How can I pass parameter to the function through the Linux command line and run the script?
I have a PHP script check.php with a function
<?php
function checkValues($arg1, $arg2){
...
}
?>
How can I pass parameter to the function through the Linux command line and run the script?