假设有一个包含内容的文件 ( 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');
它在远程机器上创建一个空文件。我应该使用什么来复制远程机器上的内容?