Home  >  Article  >  Backend Development  >  How to read files into array in php?

How to read files into array in php?

怪我咯
怪我咯Original
2017-07-14 09:58:522916browse

PHPRead filesYou can read files in the current server or remote server. The steps are: open the file, read the file and close the file. This article mainly introduces how to read files into array in php? , involving the functions such as file and rtrim in PHP, the operating skills for files and strings. The specific analysis is as follows:

In php, the file can be read into an array through the file() function. The elements in the array are each line of the file. The file() function presses "\n" The line-split file is saved to an array, so each element of the array ends with "\n", which we can remove through the rtrim() function.

rtrim() function removes whitespace characters or other predefined characters on the right side of a string.

php reads the file into the array example code

<?php 
$lines = file("/tmp/file.txt");
foreach ($lines as $line) {
 $line = rtrim($line);
 print("$line\n");
 // more statements...
}
?>

The above is the detailed content of How to read files into array in php?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn