以下のコードは、ssh2_exec を使用して Java バージョンを取得できません。絶対パス /usr/bin/java も試しました。同じコードが「php --version」で動作しています。この問題の考えられる理由は何ですか?
/usr/bin/java の chmod 777 は既に実行済み
$connection = ssh2_connect('xx.xx.xx.xx', 22);
ssh2_auth_password($connection, $username, $password);
$stream = ssh2_exec($connection, 'java -version;');
stream_set_blocking($stream, true);
$tempVar = stream_get_contents($stream);
echo $tempVar; // nothing printed here