以下代码创建 shell.sh、gitstatus.txt 但 gitstatus.txt 为空。如果我执行注释部分,则创建目录。为什么这些值没有进入 gitstatus.txt 文件?任何线索?
<?php
$command = "echo '#!/bin/sh'>shell.sh";
exec($command);
$cmnd = "echo 'git status >gitstatus.txt'>>shell.sh";
//$cmnd = "echo 'mkdir rr1'>>shell.sh";
exec($cmnd);
$cmd1 = "sh shell.sh";
exec($cmd1);
?>