我使用php ssh2_exec在远程Linux服务器上执行ps aux命令...启动连接的服务器是Ubuntu 14.04,我正在与之通信的服务器是Centos 6.6。
两个系统都是完全更新,我在Ubuntu系统上使用以下版本的PHP和Apache:
apache2 2.4.7-1ubuntu4.5 libapache2-mod-php5 5.5.9 + dfsg-1ubuntu4.11
php5 5.5.9 + dfsg-1ubuntu4.11
我使用以下代码发送命令并捕获流:
echo '<pre>';
$stream = ssh2_exec($connection, $command);
stream_set_blocking($stream, true);
$stream_out = ssh2_fetch_stream($stream, SSH2_STREAM_STDIO);
while($line = fgets($stream_out)) {
flush();
echo $line."<br />";
}
echo '</pre>';
echo '<br />';
unset($connection);
$ command定义为:$ command =&#34; ps aux | sed&#39; / [。*] / d&#39;&#34;;
该命令运行,但返回的文本在显示远程系统上运行的进程时会被文本攻击...下面是指向正在发生的事情的图像的链接。
https://www.joeman1.com/images/stikethoughtest.png
(我会张贴图片,但我是新来的,需要一些声誉;))。
当我在命令行上使用php -f时,只有在浏览器中才会发生这种情况 - IE,Firefox和Chrome都经过测试。
有关如何解决此问题的任何想法?如果您需要更多信息,请告诉我。
谢谢! 乔
答案 0 :(得分:0)
尝试检查您的HTML源代码。或者:
<?php
echo '<pre>';
$stream = ssh2_exec($connection, $command);
stream_set_blocking($stream, true);
$stream_out = ssh2_fetch_stream($stream, SSH2_STREAM_STDIO);
while($line = fgets($stream_out)) {
flush();
// convert the string to HTML Entities
// Since you're getting data from a stream, no telling what might come out.
echo htmlentities($line)."<br />";
}
echo '</pre>';
echo '<br />';
unset($connection);
?>