-1

我正在尝试 SFTP 动态制作的 HTML 文件(使用文件放置内容)和 shh2 库。

这是我到目前为止所得到的,apache 报告它无法发送,因为本地磁盘上不存在该文件:

$pageBody = '<body>
    <div id="canvas_container">
        <canvas id="designer_canvas" width="430" height="415">
        </canvas>
    </div>
<div style="display:none" id="share_design_details">
<li>'.$mc1.'</li><li>'.$mc1.'</li><li>'.$mc2.'</li><li>'.$sp.'</li><li>'.$p.'</li><li>'.$c.'</li></div>

<div id="test">This design is called : '.$designName.'</div></body>' ; 


$newFile = file_put_contents('newfile.html',$pageBody);
$connection = ssh2_connect('myhost.com', 22);
ssh2_auth_password($connection, 'myuser', 'mypass');

$sftp = ssh2_sftp($connection);
ssh2_scp_send($connection, $newFile, $newFile, 0644);
4

3 回答 3

1

我自己会使用 phpseclib,一个纯 PHP SFTP 实现。例如。

<?php
include('Net/SFTP.php');

//Define content
$pageBody = 'CONTENT HERE';

//Connect to SFTP host
$sftp = new Net_SFTP('myhost.com', 22);
$sftp->login('myuser', 'mypass');

//Send the file
$sftp->put('/tmp/temp.html', $pageBody);
?>

更便携,可以说也更容易使用。

于 2012-12-20T14:15:28.380 回答
0

完全未经测试,但通常写入 SSH 连接(请注意,在 shell 下)使其可用于另一端。考虑到这一点,运行一个命令,将它放在另一侧的正确位置,然后写入它。

$stream = ssh_exec('cat > some/file');
$result = fwrite($stream, $pageBody);
于 2012-12-19T18:01:52.243 回答
0

ssh2_scp_send ()函数需要本地和远程文件的文件路径。

http://php.net/manual/en/function.ssh2-scp-send.php

file_put_contents()函数返回写入文件的字节数,而不是文件路径。

http://php.net/manual/en/function.file-put-contents.php

因此,您的ssh2_scp_send()应该读取如下内容,其中目标服务器上的目标目录是/tmp

ssh2_scp_send($connection, 'newfile.html', '/tmp/newfile.html', 0644);

我认为不可能上传尚不存在的文件,因为您实际上是直接写入目标服务器而不是上传文件。

我会在使用unlink()函数发送后简单地删除文件。

http://php.net/manual/en/function.unlink.php

所以你的完整逻辑如下:

//Define content
$pageBody = 'CONTENT HERE';

//Create the file
$newFile = file_put_contents('temp.html', $pageBody);

//Connect to SFTP host
$connection = ssh2_connect('myhost.com', 22);
ssh2_auth_password($connection, 'myuser', 'mypass');
$sftp = ssh2_sftp($connection);

//Send the file
ssh2_scp_send($connection, 'temp.html', '/tmp/temp.html', 0644);

//Delete the local file
unlink('temp.html);
于 2012-12-19T17:52:15.050 回答