|
|
|
code ย้ายไฟล์จาก Folder หนึ่งไปอีก Folder หนึ่งแล้วเปลี่ยนชื่อ ค่ะ |
|
|
|
|
|
|
|
ช่วยดูให้หน่อยค่ะ คือต้องการ move file แล้วเก็บไว้อีก folder โดยเปลี่ยนชื่อ file เป็นอีกชื่อหนึ่งค่ะ
เช่น 00001.csv เป็น 00001_bck.csv
Code (PHP)
$dir = "D:/text/";
$a_text = @scandir($dir);
$file_n = date("YmdHis");
$x = 2;
for ($i=0; $i<count($a_text); $i++) {
$target_url = "frm_scanfile.php";
$file_name_with_full_path = realpath('D:/text/'.$a_text[$x]);
$post = array('textFile'=>'@'.$file_name_with_full_path);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$target_url);
curl_setopt($ch, CURLOPT_POST,1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
$result=curl_exec ($ch);
curl_close ($ch);
$filename = $a_text[$x];
$file_basename = substr($filename, 0, strripos($filename, '.'));
$file_ext = substr($filename, strripos($filename, '.'));
$newfilename = md5($file_basename) . $file_ext;
@rename("D:\\text\\".$a_text[$x], "D:\\text_move\\".$a_text[$x]);
$x++;
}
Tag : PHP
|
|
|
|
|
|
Date :
2016-09-25 09:57:41 |
By :
Nato_one |
View :
3223 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้การ Copy ปกตินี่แหละครับ
Code (PHP)
<?php
$flgCopy = copy("thaicreate.txt", "thaicreate-bak.txt");
if($flgCopy)
{
echo "File copy";
}
else
{
echo "File can not copy";
}
?>
PHP copy() text file
|
|
|
|
|
Date :
2016-09-26 12:10:58 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|