为什么 php 的 shell_exec 没有给出某些 a.out 文件的输出
Why shell_exec of php is not giving output of some a.out file
我正在使用可以编译的 php 脚本和 运行 c++ 代码。正在编译最大种类的 c++ 代码并通过 shell_exec 命令给出输出。但是某些具有结构 class 的 c++ 代码正在编译,但无法通过 apache 服务器中的 shell_exec 从 a.out 文件中获取输出。结果它的输出在 php 中显示为 null。请注意,在 ubuntu 终端中它可以工作,但是当我 运行 它来自 php 它不能是 运行。我正在 运行 将它安装在 ubuntu,Apache 服务器上。这是我的 php 代码,可以 运行 c++ 代码
<?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 运行ning 脚本时,您是在 www-data 用户下 运行ning 脚本。
某些可执行文件不能在 www-data 用户下 运行。您可以尝试的解决方案是将 www-data 添加到您的用户组。
找到有趣的读物
我终于找到了解决办法。我刚刚将我的 g++ 版本更改为 4.9,然后 shell_exec() 开始工作。
安装 g++ 4.9
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install g++-4.9
设置 g++ 4.9
sudo ln -f -s /usr/bin/g++-4.9 /usr/bin/g++
以前不能显示输出的c++结构和class代码现在可以显示输出了。我不知道为什么 g++ 5 版本在终端中工作但在 shell_exec() 中不工作,但 g++ 4.9 在终端和 shell_exec()
中工作
我正在使用可以编译的 php 脚本和 运行 c++ 代码。正在编译最大种类的 c++ 代码并通过 shell_exec 命令给出输出。但是某些具有结构 class 的 c++ 代码正在编译,但无法通过 apache 服务器中的 shell_exec 从 a.out 文件中获取输出。结果它的输出在 php 中显示为 null。请注意,在 ubuntu 终端中它可以工作,但是当我 运行 它来自 php 它不能是 运行。我正在 运行 将它安装在 ubuntu,Apache 服务器上。这是我的 php 代码,可以 运行 c++ 代码
<?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 运行ning 脚本时,您是在 www-data 用户下 运行ning 脚本。 某些可执行文件不能在 www-data 用户下 运行。您可以尝试的解决方案是将 www-data 添加到您的用户组。
找到有趣的读物我终于找到了解决办法。我刚刚将我的 g++ 版本更改为 4.9,然后 shell_exec() 开始工作。
安装 g++ 4.9
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install g++-4.9
设置 g++ 4.9
sudo ln -f -s /usr/bin/g++-4.9 /usr/bin/g++
以前不能显示输出的c++结构和class代码现在可以显示输出了。我不知道为什么 g++ 5 版本在终端中工作但在 shell_exec() 中不工作,但 g++ 4.9 在终端和 shell_exec()
中工作