バックグランド処理呼び出し(実行)
<?php
exec("nohup php -c test.php 引数1 引数2 引数3 > /dev/null &");
?>
呼び出され側(バックグランド処理)
test.php
<?php
引数1 = $argv[1];
引数2 = $argv[2];
引数3 = $argv[3];
?>
バックグランド処理呼び出し(実行)
<?php
exec("nohup php -c test.php 引数1 引数2 引数3 > /dev/null &");
?>
呼び出され側(バックグランド処理)
test.php
<?php
引数1 = $argv[1];
引数2 = $argv[2];
引数3 = $argv[3];
?>