检测php脚本是从schell_execute调用还是正在手动运行

时间:2019-05-23 08:01:50

标签: php debugging shell-exec

在某些情况下,从shell_execute调用处理程序。然后,我们的调试器认为直接从cmd处被用户调用他并输出true。我们需要处理它。知道如何吗?

#include <sstream>
#include <iostream>

int main()
{
  std::stringstream ss;
  ss << 2 << 5 << 8; 
  int result{};
  ss >> result;
  std::cout << result << std::endl;
}

在shell_exec中设置服务器TERM var的问题将运行。并且该部分返回true。我们需要识别它是否是手动的。

0 个答案:

没有答案