|
|
|
ขอ code php ส่งไฟล์ ระหว่าง server กับ server หน่อยครับ |
|
|
|
|
|
|
|
ลองดูครับ ใช้ ftp ง่าย ๆ ครับ
Code (PHP)
<?php
$conn = ftp_connect("ftp.thaicreate.com") or die("Could not connect");
ftp_login($conn,"user","password");
ftp_pasv($conn, true);
$localfile = "source.txt";
$destination = "/public_html/resource/des.txt";
ftp_put($conn,$destination,$localfile,FTP_BINARY);
ftp_close($conn);
?>
Code (ส่งออกไป)
ftp_put($conn,$destination,$localfile,FTP_BINARY);
Code (ดึงกลับมา)
ftp_put($conn,$destination,$localfile,FTP_BINARY);
สลับกันใช้ได้ครับ
|
|
|
|
|
Date :
2013-06-26 20:54:45 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|