通过 php 运行的控制台命令的输出被剪切

发布于 2024-12-05 01:46:23 字数 698 浏览 0 评论 0原文

当我通过 putty 在控制台中运行 ps ax 命令时,我得到:

1053  ??  Ss     0:45.47 /usr/local/sbin/nrpe2 -d -c /usr/local/etc/nrpe.cfg
1085  ??  Is     0:00.03 /bin/sh /usr/local/bin/mysqld_safe --defaults-extra-file=/var/db/mysql/my.cnf --user=mysql --datadir=/var/db/mysql --pid-file=/var/db/mysql/MYNAME.pid

但是当我通过 php 运行此命令时:

exec('ps ax', $o);
print_r($o);

我得到相同的结果,但是被剪切了

[27] =>  1053  ??  Ss     0:45.48 /usr/local/sbin/nrpe2 -d -c /usr/local/etc/nrpe.cfg
[28] =>  1085  ??  Is     0:00.03 /bin/sh /usr/local/bin/mysqld_safe --defaults-extra-f

为什么位置 >=79 的所有字符都被截断?

When I run ps ax command in console via putty I get:

1053  ??  Ss     0:45.47 /usr/local/sbin/nrpe2 -d -c /usr/local/etc/nrpe.cfg
1085  ??  Is     0:00.03 /bin/sh /usr/local/bin/mysqld_safe --defaults-extra-file=/var/db/mysql/my.cnf --user=mysql --datadir=/var/db/mysql --pid-file=/var/db/mysql/MYNAME.pid

But when I run this command via php:

exec('ps ax', $o);
print_r($o);

I get the same, but cutted!

[27] =>  1053  ??  Ss     0:45.48 /usr/local/sbin/nrpe2 -d -c /usr/local/etc/nrpe.cfg
[28] =>  1085  ??  Is     0:00.03 /bin/sh /usr/local/bin/mysqld_safe --defaults-extra-f

Why are all characters from position >=79 truncated?

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

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

发布评论

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

评论(1

此生挚爱伱 2024-12-12 01:46:23

这是我们在脚本中使用的技术:

exec("export COLUMNS=1000; ps ax | grep $parameter", $results);

这是 COLUMNS 的含义

COLUMNS
   Used by the select builtin command to determine the terminal width when 
   printing selection lists. Automatically set upon receipt of a SIGWINCH. 

Here's the technique we used on our script:

exec("export COLUMNS=1000; ps ax | grep $parameter", $results);

Here's what COLUMNS means:

COLUMNS
   Used by the select builtin command to determine the terminal width when 
   printing selection lists. Automatically set upon receipt of a SIGWINCH. 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文