|
|
|
การตรวจสอบ upload file server ไปยัง server อีกที่หนึ่ง จะใช่คำสั่งอะไรว่าได้ไม่ได้ |
|
|
|
|
|
|
|
FTP ระหว่าง server ก็ได้ครับ เร็วมากครับ
ลองดูครับ ใช้ ftp ง่าย ๆ ครับ
Code (PHP)
<?php
$conn = ftp_connect("ftp.thaicreate.com") or die("Could not connect");
ftp_login($conn,"[email protected]","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 :
2012-04-23 20:28:06 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|