0

次のコードを使用して、MAMP でバックグラウンドの php プロセスをトリガーしようとしています。

exec("php /Users/Joe/sandbox/getnew.php?artist=".$artistID." > error_log &");

また:

shell_exec("nohup /usr/bin/php /Users/Joe/sandbox/getnew.php?artist=".$artistID." > error_log &");

phpファイルへのダイレクトパスでも起動しないみたい?トリガーされると、API から情報を収集し、データベースに書き込みます。

4

1 に答える 1

1

次のようなことをしようとしましたか:

exec("php /Users/Joe/sandbox/getnew.php?artist=".$artistID, $output);

以降:

file_put_contents($file, implode("\n", $output), FILE_APPEND)
于 2013-04-17T09:15:30.063 に答える