في هذا الفصل سوف يعلمك كيفية فتح، قراءة، وإغلاق ملف موجود على الخادم.
PHP فتح ملف - fopen()
وهناك طريقة أفضل لفتح الملفات هو مع fopen() وظيفة. هذه وظيفة تمنحك المزيد من الخيارات من readfile() وظيفة.
سوف نستخدم ملف نصي، "webdictionary.txt" ، خلال الدروس:
AJAX = Asynchronous JavaScript and XML
CSS = Cascading Style Sheets
HTML = Hyper Text Markup Language
PHP = PHP Hypertext Preprocessor
SQL
= Structured Query Language
SVG = Scalable Vector Graphics
XML =
EXtensible Markup Language
المعلمة الأولى الدالة fopen () يحتوي على اسم الملف المراد فتح ويحدد المعلمة الثانية في الوضع الذي يجب فتح الملف. المثال التالي أيضا بإنشاء رسالة إذا كانت وظيفة الدالة fopen () غير قادر على فتح الملف المحدد:
مثال
<?php
$myfile = fopen("webdictionary.txt", "r") or
die("Unable to
open file!");
echo fread($myfile,filesize("webdictionary.txt"));
fclose($myfile);
?>
تشغيل المثال » وسيتم شرح fread () وfclose () وظائف أدناه: نصيحة.
يمكن فتح الملف في واحدة من الأوضاع التالية:
Modes | Description |
---|---|
r | Open a file for read only . File pointer starts at the beginning of the file |
w | Open a file for write only . Erases the contents of the file or creates a new file if it doesn't exist. File pointer starts at the beginning of the file |
a | Open a file for write only . The existing data in file is preserved. File pointer starts at the end of the file. Creates a new file if the file doesn't exist |
x | Creates a new file for write only . Returns FALSE and an error if file already exists |
r+ | Open a file for read/write . File pointer starts at the beginning of the file |
w+ | Open a file for read/write . Erases the contents of the file or creates a new file if it doesn't exist. File pointer starts at the beginning of the file |
a+ | Open a file for read/write . The existing data in file is preserved. File pointer starts at the end of the file. Creates a new file if the file doesn't exist |
x+ | Creates a new file for read/write . Returns FALSE and an error if file already exists |
PHP مقروءة ملف - fread ()
يقرأ وظيفة fread () من ملف مفتوح.
المعلمة الأولى من fread () يحتوي على اسم الملف إلى قراءة من وتعين المعلمة الثانية الحد الأقصى لعدد بايت للقراءة.
رمز PHP التالية يقرأ ملف "webdictionary.txt" إلى نهاية:
fread($myfile,filesize("webdictionary.txt"));
PHP إغلاق ملف - fclose()
و fclose() يتم استخدام الدالة لإغلاق ملف مفتوح.
انها ممارسة برمجة جيدة لإغلاق كافة الملفات بعد الانتهاء معهم. كنت لا تريد ملف مفتوح يركض على الخادم الخاص بك تناول الموارد!
و fclose() يتطلب اسم الملف (أو المتغير الذي يحمل اسم الملف) نحن نريد ليغلق:
<?php
$myfile = fopen("webdictionary.txt", "r") ;
// some code to be
executed....
fclose($myfile) ;
?>
PHP مقروءة سطر واحد - fgets()
و fgets() يتم استخدام الدالة لقراءة سطر واحد من الملف.
على سبيل المثال إخراج تحت السطر الأول من "webdictionary.txt" ملف:
مثال
<?php
$myfile = fopen("webdictionary.txt", "r") or
die("Unable to
open file!");
echo fgets($myfile);
fclose($myfile);
?>
تشغيل المثال » Note: بعد استدعاء fgets() وظيفة، انتقلت مؤشر الملف إلى السطر التالي.
PHP تحقق في نهاية ملف - feof()
و feof() الشيكات وظيفة إذا كان "end-of-file" (EOF) تم التوصل إليها.
و feof() وظيفة مفيدة للحلقات من خلال البيانات من طول مجهولة.
يقرأ المثال التالي "webdictionary.txt" خط ملف سطرا، حتى يتم التوصل إلى نهاية الملف:
مثال
<?php
$myfile = fopen("webdictionary.txt", "r") or
die("Unable to
open file!");
// Output one line until end-of-file
while(!feof($myfile))
{
echo fgets($myfile) . "<br>";
}
fclose($myfile);
?>
تشغيل المثال » PHP مقروءة حرف واحد - fgetc()
و fgetc() يتم استخدام الدالة لقراءة حرف واحد من ملف.
يقرأ المثال التالي "webdictionary.txt" الطابع ملف بحرف، حتى يتم التوصل إلى نهاية الملف:
مثال
<?php
$myfile = fopen("webdictionary.txt", "r") or
die("Unable to
open file!");
// Output one character until end-of-file
while(!feof($myfile))
{
echo fgetc($myfile);
}
fclose($myfile);
?>
تشغيل المثال » Note: بعد استدعاء fgetc() وظيفة، مؤشر الملف ينتقل إلى الحرف التالي.
استكمال PHP نظام الملفات المرجعي
للإشارة كاملة من وظائف نظام الملفات، انتقل إلى لدينا كامل PHP نظام الملفات المرجعي .