0

这是将表单数据写入同一服务器(Linux)上的 txt 文件的脚本。在每一篇文章中,它都会生成新文件。

$myfile='/home/mysite/public_html/nar/fis_'.date('D_Mi').'_'.date('dmY_Hi').'.txt';

$fh=fopen($myfile,"w"); 
    # Now UTF-8 - Add byte order mark 
    fwrite($fh, pack("CCC",0xef,0xbb,0xbf)); 
    fwrite($fh,$upisufajl); 
    fclose($fh);

但现在我需要它使用 Windows 上的用户名和密码在远程 FTP 服务器上写入。

I have address: ftp://89.142.185.206/new_files/ and username and password.

我需要做什么?示例将不胜感激。

多谢你们

4

1 回答 1

1

由于我假设您已成功将内容写入文本文件,因此请使用以下脚本登录 FTP 服务器以上传您的文本文件。

<?php
     $ftp_server="";
     $ftp_user_name="";
     $ftp_user_pass="";
     $file = "";//your textfile
     $remote_file = "remfile.txt";


     $conn_id = ftp_connect($ftp_server);
     $login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
     if (ftp_put($conn_id, $remote_file, $file, FTP_ASCII)) {
        echo "successfully uploaded $file\n";
        exit;
     } else {
        echo "There was a problem while uploading $file\n";
        exit;
        }
     ftp_close($conn_id);
于 2013-09-06T13:28:19.797 回答