0

コンテンツを含むファイル ( 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');

リモート マシンに空のファイルを作成します。リモート マシンでコンテンツのコピーを作成するには、何を使用すればよいですか?

4

2 に答える 2

2

見積もりを確認してください。

$ssh->exec('echo "'.$con.'" > /tmp/text1.txt');

$con は単一引用符で解析されません。

于 2013-02-05T06:22:12.810 に答える
0

このコードを書く必要があります

 // $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");
于 2013-02-05T06:23:44.933 に答える