Post Page Advertisement [Top]

Pemrograman WebPHP

Operasi File Di PHP

Dalam pengorperasian file di bahasa pemrograman PHP dapat dilakukan dengan menggunakan fungsi-fungsi yang telah disediakan oleh PHP, yaitu sebagai berikut:

1. fopen()
Fungsi fopen() digunakan untuk membuka file
<?php $file = fopen(“welcome.txt”, “r”); ?>
Parameter fungsi fopen()

2. fclose()
Fungsi fclose digunakan untuk menutup file.

<?php//buka file
$file = fopen(“welcome.txt”, “r”);
//tutup file
fclose($file);
?>
3. fgets()
Fungsi fgets() digunakan untuk membaca file.

<?php//buka file
$file  = fopen(“welcome.txt”,”r”);
//baca file
echo fgets($file);
//tutup file
fclose($file);
?>
4. fwrite()
Fungsi fwrite() digunakan untuk menulis file.

<?php//buka file
$file = fopen(“welcome.txt”,”w+”);
//tulis file
fwrite($file,”Kalimat ini ditulis dengan mode w+”);
//tutup file
fclose($file);
?>

1 comment:

  1. Casinos Near Hollywood, AL | Mapyro
    Find Casinos Near 안산 출장샵 Hollywood, AL in real-time and see activity. 춘천 출장안마 Filter by, Best Casinos 출장마사지 Near Hollywood, Address, 동두천 출장샵 Phone 청주 출장샵 Number, Reviews, Map of Near

    ReplyDelete

Bottom Ad [Post Page]