These tips will help you very much in the first steps working with PHP, at least in file processing.
Create a File
$my_file = 'file.txt';
$handle = fopen($my_file, 'w') or die('Cannot open file: '.$my_file); //implicitly creates file
Open a File
$my_file = 'file.txt';
$handle = fopen($my_file, 'w') or die('Cannot open file: '.$my_file); //open file for writing ('w','r','a')...
Read a File
$my_file = 'file.txt';
$handle = fopen($my_file, 'r');
$data = fread($handle,filesize($my_file));
Write to a File
$my_file = 'file.txt';
$handle = fopen($my_file, 'w') or die('Cannot open file: '.$my_file);
$data = 'This is the data';
fwrite($handle, $data);
Append to a File
$my_file = 'file.txt';
$handle = fopen($my_file, 'a') or die('Cannot open file: '.$my_file);
$data = 'New data line 1';
fwrite($handle, $data);
$new_data = "\n".'New data line 2';
fwrite($handle, $new_data);
Close a File
$my_file = 'file.txt';
$handle = fopen($my_file, 'w') or die('Cannot open file: '.$my_file);
//write some data here
fclose($handle);
Delete a File
$my_file = 'file.txt';
unlink($my_file);View more threads in the same category:
- Phòng khám An Đức lừa đảo bệnh nhân tại Thanh Hóa
- Lý giải nguyên nhân chậm kinh mà không có thai
- nguyên nhân chậm kinh mà không có thai
- buy real documents online(https://highqualitydocs247.com)passports, drivers license,
- Mất trinh chảy máu bao lâu
- Buy real drivers license(https://www.highqualitydocs247.com)visa,, passports, id card
- purchase passports online(https://highqualitydocs247.com)buy legal American passport,
- Bao Quy Đầu
- Nk-bxh
- nguyên nhân gây ngứa và chảy máu vùng kín
Bookmarks