ホームページ >バックエンド開発 >PHPチュートリアル >PHPでPythonスクリプトを実行する方法
PHPでPythonスクリプトを実行するにはどうすればよいですか?
php 経由でリモート サーバーに ssh 接続し、サーバー上で Python ファイルを実行して結果を取得し、php から出力したいと考えています。
私のコードは次のとおりです:
$connection = ssh2_connect('remote-server',22);<br /> ssh2_auth_password($connection, 'root','pwd');<br /> <br /> $string = ssh2_exec($connection, 'python pythonfile.py; sleep 20');<br /> stream_set_blocking($string,true);<br /> echo stream_get_contents($string);