php shell_exec() 输出获取文本文件

发布于 2024-11-02 09:33:51 字数 159 浏览 3 评论 0原文

我正在尝试在我的 Centos 计算机上运行 rate -c 192.168.122.0/24 命令,并使用 shell_exec('rate -c 192.168.0/24') 将该命令的输出写入文本文件。 122.0/24') 命令;仍然没有运气!

I'm trying to run rate -c 192.168.122.0/24 command on my Centos computer and write down the output of that command to the text file using shell_exec('rate -c 192.168.122.0/24') command; still no luck!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

烧了回忆取暖 2024-11-09 09:33:51

如果您不需要 PHP,您可以在 shell 中运行它:

rate -c 192.168.122.0/24 > file.txt

如果您必须从 PHP 运行它:

shell_exec('rate -c 192.168.122.0/24 > file.txt');

“>”字符将命令的输出重定向到文件。

If you don't need PHP, you can just run that in the shell :

rate -c 192.168.122.0/24 > file.txt

If you have to run it from PHP :

shell_exec('rate -c 192.168.122.0/24 > file.txt');

The ">" character redirect the output of the command to a file.

誰ツ都不明白 2024-11-09 09:33:51

您还可以通过 PHP 获取输出,然后将其保存到文本文件

    $output = shell_exec('rate -c 192.168.122.0/24');
    $fh = fopen('output.txt','w');
    fwrite($fh,$output);
    fclose($fh);

You can also get the output via PHP, and then save it to a text file

    $output = shell_exec('rate -c 192.168.122.0/24');
    $fh = fopen('output.txt','w');
    fwrite($fh,$output);
    fclose($fh);
薄荷→糖丶微凉 2024-11-09 09:33:51

正如您忘记提及的那样,您的命令提供了非结束输出流。要实时读取输出,需要使用 popen

来自 PHP 网站的示例:

$handle = popen('/path/to/executable 2>&1', 'r');
echo "'$handle'; " . gettype($handle) . "\n";
$read = fread($handle, 2096);
echo $read;
pclose($handle);

您可以像读取文件一样读取进程输出。

As you forgot to mention, your command provides a non ending output stream. To read the output in real time, you need to use popen.

Example from PHP's website :

$handle = popen('/path/to/executable 2>&1', 'r');
echo "'$handle'; " . gettype($handle) . "\n";
$read = fread($handle, 2096);
echo $read;
pclose($handle);

You can read the process output just like a file.

半岛未凉 2024-11-09 09:33:51
$path_to_file = 'path/to/your/file';
$write_command = 'rate -c 192.168.122.0/24 >> '.$path_to_file;
shell_exec($write_command);

希望这有帮助。 :D
这将引导你走上一条好路。 https://unix.stackexchange.com/a/127529/41966

$path_to_file = 'path/to/your/file';
$write_command = 'rate -c 192.168.122.0/24 >> '.$path_to_file;
shell_exec($write_command);

hopes this helps. :D
And this will direct you to a good way. https://unix.stackexchange.com/a/127529/41966

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文