টেক্সট ফাইলের মাত্র 5টি শেষ লাইন পড়তে, কোডটি নিম্নরূপ -
উদাহরণ
$file = file("filename.txt"); for ($i = max(0, count($file)-6); $i < count($file); $i++) { echo $file[$i] . "\n"; }
আউটপুট
এটি নিম্নলিখিত আউটপুট −
তৈরি করবেGiven that the file has more than 5 lines of text, the last 5 lines of the text file will be displayed.
ফাইলটি খোলা হয় এবং ফাইলের লাইনের সংখ্যা গণনা করা হয় এবং শেষ লাইন থেকে শুরু করে 5টি লাইন পড়া হয়।