PHP File Create/Write

In this chapter we will teach you how to create and write to a file on the server.

Энэ бүлэгт бид сервер дээр файл үүсгэх, бичих аргыг зааж өгөх болно.


PHP Create File – fopen() #

The fopen() function is also used to create a file. Maybe a little confusing, but in PHP, a file is created using the same function used to open files.

fopen() функцийг файл үүсгэхэд ашигладаг. Магадгүй жаахан ойлгомжгүй байж болох ч PHP дээр файл нээхэд ашигладаг ижил функцийг ашиглан файл үүсгэдэг.

If you use fopen() on a file that does not exist, it will create it, given that the file is opened for writing (w) or appending (a).

Хэрэв та байхгүй файл дээр fopen() – ийг ашиглавал (w) эсвэл (a) -г хавсаргах үүднээс файл нээгдсэн тохиолдолд үүнийг үүсгэх болно.

The example below creates a new file called “testfile.txt”. The file will be created in the same directory where the PHP code resides:

Доорх жишээ нь “testfile.txt” нэртэй шинэ файл үүсгэж байна. PHP код байрладаг ижил директор дотор файлыг үүсгэх болно.

Example #

Жишээ #

$myfile = fopen(“testfile.txt”, “w”)

PHP File Permissions #

If you are having errors when trying to get this code to run, check that you have granted your PHP file access to write information to the hard drive.

Хэрэв та энэ кодыг ажиллуулах гэж байгаад алдаа гарвал PHP файлд хатуу диск рүү мэдээлэл бичих эрх олгосон эсэхээ шалгаарай.


PHP Write to File – fwrite() #

The fwrite() function is used to write to a file.

fwrite() функцийг файлд бичихэд ашигладаг.

The first parameter of fwrite() contains the name of the file to write to and the second parameter is the string to be written.

fwrite() -ийн эхний параметр нь бичих файлын нэрийг агуулдаг бол хоёр дахь параметр нь бичих мөр юм.

The example below writes a couple of names into a new file called “newfile.txt”:

Доорх жишээ нь “newfile.txt” нэртэй шинэ файлд хэдэн нэрийг бичнэ:

Example #

Жишээ #

<?php $myfile = fopen("newfile.txt", "w") or die("Unable to open file!"); $txt = "John Doe\n"; fwrite($myfile, $txt); $txt = "Jane Doe\n"; fwrite($myfile, $txt); fclose($myfile); ?>

Notice that we wrote to the file “newfile.txt” twice. Each time we wrote to the file we sent the string $txt that first contained “John Doe” and second contained “Jane Doe”. After we finished writing, we closed the file using the fclose() function.

Бид “newfile.txt” файл руу хоёр удаа бичсэн болохыг анхаарна уу. Бид файл руу бичих бүрдээ эхлээд “John Doe”, дараа нь “Jane Doe” агуулсан $ txt мөрийг илгээсэн. Бид бичиж дууссаны дараа бид fclose() функцийг ашиглан файлыг хаасан.

If we open the “newfile.txt” file it would look like this:

John Doe
Jane Doe

    
 
 
 
 

PHP Overwriting #

Now that “newfile.txt” contains some data we can show what happens when we open an existing file for writing. All the existing data will be ERASED and we start with an empty file.

Одоо “newfile.txt” нь зарим өгөгдлийг агуулж байгаа тул одоо байгаа файлыг нээхэд юу тохиолдохыг харуулах болно. Одоо байгаа бүх өгөгдлийг устгаж, бид хоосон файлаар эхэлнэ.

In the example below we open our existing file “newfile.txt”, and write some new data into it:

Доорх жишээнд бид одоо байгаа “newfile.txt” файлыг нээж, түүнд зарим шинэ өгөгдлийг бичнэ үү.

Example #

Жишээ #

<?php $myfile = fopen("newfile.txt", "w") or die("Unable to open file!"); $txt = "Mickey Mouse\n"; fwrite($myfile, $txt); $txt = "Minnie Mouse\n"; fwrite($myfile, $txt); fclose($myfile); ?>

If we now open the “newfile.txt” file, both John and Jane have vanished, and only the data we just wrote is present:

Хэрэв бид одоо “newfile.txt” файлыг нээвэл Жон, Жейн хоёулаа алга болсон бөгөөд зөвхөн бидний бичсэн өгөгдөл л байна:

Mickey Mouse
Minnie Mouse

Complete PHP Filesystem Reference #

For a complete reference of filesystem functions, go to our complete PHP Filesystem Reference.

Файлын системийн функцийг бүрэн лавлахын тулд манай PHP файлын системийн лавлагаа руу орно уу.

Powered by BetterDocs

Leave a Reply