gpt4 book ai didi

php - 为什么 php 的 shell_exec 没有给出一些 a.out 文件的输出

转载 作者:行者123 更新时间:2023-11-28 01:52:28 25 4
gpt4 key购买 nike

我正在使用可以编译和运行 C++ 代码的 PHP 脚本。最大种类的 c++ 代码正在编译并通过 shell_exec 命令给出输出。但是某些具有结构、类的 C++ 代码正在编译,但无法通过 apache 服务器中的 shell_exec 从 a.out 文件中获取输出。结果它的输出在 php 中显示为 null。请注意,在 ubuntu 终端中它可以工作,但是当我从 php 运行它时,它无法运行。我在 ubuntu、apache 服务器上运行它。这是我的可以运行 C++ 代码的 PHP 代码

<?php
$CC="g++";
$out="timeout 5s ./a.out";
$code=$_POST["code"];
$input=$_POST["input"];
$filename_code="main.cpp";
$filename_in="input.txt";
$filename_error="error.txt";
$executable="a.out";
$command=$CC." -lm ".$filename_code;
$command_error=$command." 2>".$filename_error;
$check=0;

//if(trim($code)=="")
//die("The code area is empty");

$file_code=fopen($filename_code,"w+");
fwrite($file_code,$code);
fclose($file_code);
$file_in=fopen($filename_in,"w+");
fwrite($file_in,$input);
fclose($file_in);
exec("chmod -R 777 $filename_in");
exec("chmod -R 777 $filename_code");
exec("chmod 777 $filename_error");

shell_exec($command_error);
exec("chmod -R 777 $executable");
$error=file_get_contents($filename_error);
$executionStartTime = microtime(true);

if(trim($error)=="")
{
if(trim($input)=="")
{
$output=shell_exec($out);
}
else
{
$out=$out." < ".$filename_in;
$output=shell_exec($out);

}
//echo "<pre>$output</pre>";
echo "<textarea id='div' class=\"form-control\" name=\"output\" rows=\"10\" cols=\"50\">$output</textarea><br><br>";
}
else if(!strpos($error,"error"))
{
echo "<pre>$error</pre>";
if(trim($input)=="")
{
$output=shell_exec($out);
}
else
{
$out=$out." < ".$filename_in;
$output=shell_exec($out);
}
echo "<textarea id='div' class=\"form-control\" name=\"output\" rows=\"10\" cols=\"50\">$output</textarea><br><br>";
}
else
{
echo "<pre>$error</pre>";
$check=1;
}
$executionEndTime = microtime(true);
$seconds = $executionEndTime - $executionStartTime;
$seconds = sprintf('%0.2f', $seconds);
echo "<pre>Compiled And Executed In: $seconds s</pre>";


if($check==1)
{
echo "<pre>Verdict : CE</pre>";
}
else if($check==0 && $seconds>3)
{
echo "<pre>Verdict : TLE</pre>";
}
else if(trim($output)=="")
{
echo "<pre>Verdict : WA</pre>";
}
else if($check==0)
{
echo "<pre>Verdict : AC</pre>";
}

exec("rm $filename_code");
exec("rm *.o");
exec("rm *.txt");
exec("rm $executable");
?>

最佳答案

在通过终端运行时,您正在使用您的用户权限执行 PHP 脚本。但是在使用 apache 运行脚本时,您是在 www-data 用户下运行脚本。某些可执行文件无法在 www-data 用户下运行。您可以尝试的解决方案是将 www-data 添加到您的用户组。

您可以在 https://unix.stackexchange.com/a/127529 找到有趣的读物

关于php - 为什么 php 的 shell_exec 没有给出一些 a.out 文件的输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42459755/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com