-1

次のオブジェクトを文字列に変換するにはどうすればよいですか:

$ssh->exec('tail -1 /var/log/playlog.csv');

したがって、strripos() の最初のパラメーターとして文字列を解析できます。

if($idx = strripos($ssh,','))//Get the last index of ',' substring 
{
$ErrorCode = substr($ssh,$idx + 1,(strlen($ssh) - $idx) - 1); //using the found index, get the error code using substring
echo " " .$Playlist.ReturnError($ErrorCode); //The ReturnError function just replaces the error code with a custom error
}

現在、スクリプトを実行すると、次のエラー メッセージが表示されます。

strpos() expects parameter 1 to be string

このObject of class stdClass could not be convert to stringを含む同様の質問を見てきましたが、まだ解決策が思いつかないようです。

4

1 に答える 1