0

OS: Ubuntu 16.04

ssh2_exec 内で変数を使用しようとしましたが、次のメッセージが表示されます。

PID TTY TIME CMD 12585 pts/0 05:27:05 samp03svr bash: line 1: -o: command not found

私のコード:

include('Net/SSH2.php');

$cmd = "sudo ps -p {$user->sshConnect()} -o %cpu";

$ssh = new Net_SSH2('IP');
if (!$ssh->login('username', 'password')) {
    exit('Login Failed');
}

echo $ssh->exec($cmd);

sshConnect 関数:

public function sshConnect(){
    $connection = ssh2_connect('IP', 22);
    ssh2_auth_password($connection, 'username', 'password');
    $stream = ssh2_exec($connection, 'lsof -t -i :6000');

    stream_set_blocking($stream, true);
    $out = ssh2_fetch_stream($stream, SSH2_STREAM_STDIO);
    return stream_get_contents($out);
  }

しかし、{$user->sshConnect()} を現在の PID に置き換えると、問題なく動作します。また、$user->sshConnect() は、エコー時に有効な PID を返します。

ありがとう。

4

0 に答える 0