我将如何创建一个 php 脚本来执行 shell 命令以将文本写入另一个 php 文件?并且没有任何 sudo 问题。到目前为止我有这个。
<?php
include("inc/config.php");
$command = "sed -i '$ a\this is line 2 without redirection' admin.php";
$command1 = "cat admin.php";
$output = shell_exec($command);
$output1 = shell_exec($command1);
echo "<pre>$output</pre>";
echo "<pre>$output1</pre>";
?>
我使用了 chown wwwdata 和 chmod 777