ディレクトリを作成するためのphpファイルがあります。そのphpファイルをバックグラウンドで実行したい。以下のような2つのファイルを書きました。
file1.php
<?php
error_reporting(E_ALL);
ini_set("display_errors", 1);
echo 'calling file1';
if(!is_dir('testdir')){
mkdir('testdir');
}
?>
index.php
<?php
error_reporting(E_ALL);
ini_set("display_errors", 1);
$i = '';
exec("php file1.php $i > test.txt &");
?>
ブラウザ経由でindex.phpを実行した際にディレクトリを作成したい。私は exec() 関数を書き間違えていると思います。どうなるか誰か教えてくれませんか?