Search
 
SCRIPT & CODE EXAMPLE
 

PHP

php read file line by line

$handle = fopen("inputfile.txt", "r");
if ($handle) {
    while (($line = fgets($handle)) !== false) {
        // process the line read.
    }

    fclose($handle);
} else {
    // error opening the file.
} 
Comment

read line by line php

<?php
	
	$file = new SplFileObject("file.txt");

	while(!$file->eof())
	  {
		echo $file->fgets()."<br/>";
	  }

	$file = null;

?>
Comment

PREVIOUS NEXT
Code Example
Php :: laravel get current route name 
Php :: laravel seed migrate 
Php :: php if no imagee exists 
Php :: php parse float 2 decimal places 
Php :: php title case 
Php :: php artisan php warning require 
Php :: None of the supported PHP extensions (PgSQL, PDO_PgSQL) are available. 
Php :: php loop through every day of the year 
Php :: array to string php 
Php :: create laravel project specific version 
Php :: how to remove notice error in php 
Php :: hide php extension htaccess 
Php :: pull information from another website 
Php :: php extract time from datetime 
Php :: how to traverse characters in a string in a for loop in php 
Php :: laravel ever over https 
Php :: how to count string characters in php 
Php :: migrate specific migration laravel 
Php :: how to get previous page name in php 
Php :: php string to array 
Php :: set nav link active on the basis of route laravel 8 
Php :: Unable to locate publishable resources. Publishing complete. 
Php :: pasar datetime a string php 
Php :: laravel seed specific file 
Php :: datetime to string php 
Php :: php compare string 
Php :: laravel collection flatten 
Php :: hashing passwords in yii 1 
Php :: laravel return 1 as true 
Php :: php close window after script runs 
ADD CONTENT
Topic
Content
Source link
Name
3+6 =