コンテンツを含むファイル ( test.txt ) があるとします。
testing php data
employee data
country data
このコンテンツをリモート Linux マシンの/tmpディレクトリに書き込みたいと考えています。次のコードを使用しています
// $con contains all content of the text.txt file
$con = file_get_contents("C:/wamp/www/test.txt");
// $ssh is the sshobject for the remote machine
$ssh->exec('echo "$con" > /tmp/text1.txt');
リモート マシンに空のファイルを作成します。リモート マシンでコンテンツのコピーを作成するには、何を使用すればよいですか?