MKB*_*MKB 5 php bash curl error-log stderr
我正在尝试curl
在php文件中运行命令并尝试在错误日志文件中列出其输出.除了我从exec()
函数中获得的错误之外,文件中列出了所有php错误.我正在尝试的PHP代码是:
exec("nohup curl --output ".$_SERVER['DOCUMENT_ROOT']."/abc.mp3 http://192.99.8.170:8098/stream/1; --max-time $time_in_seconds > /devnull&");
Run Code Online (Sandbox Code Playgroud)
任何人都可以请求帮助,以便我可以在错误日志文件中获得此命令生成的错误.我已经google了这个,但无法获得足够的结果.
谢谢!
该命令本身存在几个问题。
exec("nohup curl --output ".$_SERVER['DOCUMENT_ROOT'] . "/abc.mp3 http://192.99.8.170:8098/stream/1; --max-time $time_in_seconds > /devnull&");
(为了清楚起见,我已经将原来的行换行了。)
不需要在nohup
该命令的主要目的nohup
是在您因终端线路挂起而从 shell 注销时运行一个进程。(当 shell 退出时,它会向其子进程发送 SIGHUP。)使用此nohup
命令,您可以启动命令,然后注销 shell。
该curl
命令确实在 SIGHUP 上终止。您可以使用nohup
将下载进程在后台运行。但您的目标是捕获命令的输出,无论是 STDIN 还是 STDOUT。了解命令何时以及如何完成其工作也很重要。例如,同步执行命令后,可以检查退出代码(零表示成功)并检查文件是否实际下载到文件系统:
$output_dir = empty($_SERVER['DOCUMENT_ROOT']) ?
'/tmp/default-download-dir' : $_SERVER['DOCUMENT_ROOT'];
if (!is_dir($output_dir)) {
if (!mkdir($output_dir, 0755, true))
die("Failed to create directory $output_dir");
}
$url = 'http://php.net/images/logo.php';
$output_file = "{$output_dir}/logo.svg"; ;
// 2>&1 redirects standard error descriptor (2)
// to the standard output descriptor (1)
$command = sprintf("curl -o %s %s 2>&1",
escapeshellarg($output_file),
escapeshellarg($url));
$output = [];
exec($command, $output, $exit_code);
if ($exit_code != 0) {
die("Failed to download $url to $output_file");
}
clearstatcache(true, $output_file);
if (!file_exists($output_file)) {
die("File $output_file not found on file system, command: $command");
}
echo "$url has been saved to $output_file:\n",
implode(PHP_EOL, $output), PHP_EOL;
Run Code Online (Sandbox Code Playgroud)
输出
$output_dir = empty($_SERVER['DOCUMENT_ROOT']) ?
'/tmp/default-download-dir' : $_SERVER['DOCUMENT_ROOT'];
if (!is_dir($output_dir)) {
if (!mkdir($output_dir, 0755, true))
die("Failed to create directory $output_dir");
}
$url = 'http://php.net/images/logo.php';
$output_file = "{$output_dir}/logo.svg"; ;
// 2>&1 redirects standard error descriptor (2)
// to the standard output descriptor (1)
$command = sprintf("curl -o %s %s 2>&1",
escapeshellarg($output_file),
escapeshellarg($url));
$output = [];
exec($command, $output, $exit_code);
if ($exit_code != 0) {
die("Failed to download $url to $output_file");
}
clearstatcache(true, $output_file);
if (!file_exists($output_file)) {
die("File $output_file not found on file system, command: $command");
}
echo "$url has been saved to $output_file:\n",
implode(PHP_EOL, $output), PHP_EOL;
Run Code Online (Sandbox Code Playgroud)
注意函数的使用escapeshellarg
。您应该转义所有 shell 参数,否则 shell 将解释其特殊字符。
分号
用分号 ( ;
) 分隔的字符串被解释为不同的命令。所以你的--max-time $time_in_seconds > /devnull&
被解释为第二个命令。我不知道你试图实现什么目标,但你很可能在那里不需要它。
重定向至/dev/null
你的表达有一个错别字> /devnull&
。您可能意味着重定向到/dev/null
伪设备:> /dev/null
。
在上面的代码中,我们捕获了标准输出。proc_open()
如果您还想捕获其他文件描述符的输出,则应该使用该函数:
$output_dir = empty($_SERVER['DOCUMENT_ROOT']) ?
'/tmp/default-download-dir' : $_SERVER['DOCUMENT_ROOT'];
if (!is_dir($output_dir)) {
if (!mkdir($output_dir, 0755, true))
die("Failed to create directory $output_dir");
}
$url = 'http://php.net/images/logo.php';
$output_file = "{$output_dir}/logo.svg"; ;
$command = sprintf("curl -o %s %s",
escapeshellarg($output_file),
escapeshellarg($url));
$descriptors = [
1 => ['pipe', 'w'], // stdout
2 => ['pipe', 'w'], // stderr
];
$proc = proc_open($command, $descriptors, $pipes);
if (!is_resource($proc))
die("Failed to open process for command $command");
if ($output = stream_get_contents($pipes[1]))
echo "Output: $output\n\n";
fclose($pipes[1]);
if ($errors = stream_get_contents($pipes[2]))
echo "Errors: >>>>>>>>\n$errors\n<<<<<<<\n\n";
fclose($pipes[2]);
$exit_code = proc_close($proc);
if ($exit_code != 0) {
die("Failed to download $url to $output_file");
}
clearstatcache(true, $output_file);
if (!file_exists($output_file)) {
die("File $output_file not found on file system, command: $command");
}
echo "$url\nhas been saved to $output_file\n";
Run Code Online (Sandbox Code Playgroud)
输出
http://php.net/images/logo.php has been saved to /tmp/default-download-dir/logo.svg:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
100 2202 100 2202 0 0 4171 0 --:--:-- --:--:-- --:--:-- 4665
Run Code Online (Sandbox Code Playgroud)
(curl
将“详细”输出输出到标准错误描述符)
鉴于上述情况,您的命令应构建如下:
$url = 'http://192.99.8.170:8098/stream/1';
$command = sprintf("curl -o %s %s --max-time $time_in_seconds",
escapeshellarg($output_file),
escapeshellarg($url));
Run Code Online (Sandbox Code Playgroud)