পিএইচপি-তে ফাইল থেকে শেষ লাইন পড়তে, কোডটি নিম্নরূপ -
$line = ''; $f = fopen('data.txt', 'r'); $cursor = -1; fseek($f, $cursor, SEEK_END); $char = fgetc($f); //Trim trailing newline characters in the file while ($char === "\n" || $char === "\r") { fseek($f, $cursor--, SEEK_END); $char = fgetc($f); } //Read until the next line of the file begins or the first newline char while ($char !== false && $char !== "\n" && $char !== "\r") { //Prepend the new character $line = $char . $line; fseek($f, $cursor--, SEEK_END); $char = fgetc($f); } echo $line;
আউটপুট পাঠ্য ফাইলের শেষ লাইন হবে পড়া এবং প্রদর্শিত হবে।
পাঠ্য ফাইলটি পঠন মোডে খোলা হয়, এবং কার্সারটি -1 নির্দেশ করে, অর্থাৎ প্রাথমিকভাবে কিছুই না। ফাইলের শেষে বা শেষ লাইনে যাওয়ার জন্য 'fseek' ফাংশন ব্যবহার করা হয়। একটি নতুন লাইনের সম্মুখীন না হওয়া পর্যন্ত লাইনটি পড়া হয়। এর পরে, পঠিত অক্ষরগুলি প্রদর্শিত হয়৷
৷