php execute script code example
Example 1: execute script php command line
php php_file.php
// or
php php_file.php > result_file.txt // to display the result of echoes or dumps
Example 2: run shell script from php file
echo shell_exec('sh /home/scripts/fix-perm.sh');