我有一个 php 文件来创建一个目录。我希望该 php 文件在后台执行。我写了 2 个文件,如下所示。
文件1.php
<?php
error_reporting(E_ALL);
ini_set("display_errors", 1);
echo 'calling file1';
if(!is_dir('testdir')){
mkdir('testdir');
}
?>
索引.php
<?php
error_reporting(E_ALL);
ini_set("display_errors", 1);
$i = '';
exec("php file1.php $i > test.txt &");
?>
我希望通过浏览器执行 index.php 时创建一个目录。我认为我在编写 exec() 函数时犯了错误。谁能告诉我会怎么样?