Maison > Article > développement back-end > Lire le fichier ligne par ligne en utilisant PHP
Il y a deux raisons pour lesquelles vous pourriez vouloir lire un fichier ligne par ligne en utilisant PHP :
file()
Vous pouvez utiliser la fonction file()
en PHP pour lire l'intégralité du fichier dans un tableau à la fois. Les éléments du tableau sont des lignes individuelles du fichier. Vous pourrez donc parcourir les lignes du fichier en parcourant le tableau. Cette fonction accepte trois paramètres :
FILE_USE_INCLUDE_PATH
、FILE_IGNORE_NEW_LINES
和 FILE_SKIP_EMPTY_LINES
. Nous utiliserons FILE_SKIP_EMPTY_LINES
标志来跳过文件中的所有空行。您可能还想使用 FILE_IGNORE_NEW_LINES
pour supprimer les fins de ligne des lignes individuelles.
Cette fonction renvoie un tableau contenant le contenu du fichier en cas de succès et une erreur de niveau false
。如果文件不存在,您还会收到 E_WARNING
en cas d'échec. Voici un exemple d'utilisation de cette fonctionnalité.
<?php $lines = file('pride-and-prejudice.txt'); $count = 0; foreach($lines as $line) { $count += 1; echo str_pad($count, 2, 0, STR_PAD_LEFT).". ".$line; } ?>
Le résultat du code ci-dessus ressemble à ceci :
01. The Project Gutenberg eBook of Pride and Prejudice, by Jane Austen 02. 03. This eBook is for the use of anyone anywhere in the United States and 04. most other parts of the world at no cost and with almost no restrictions 05. whatsoever. You may copy it, give it away or re-use it under the terms 06. of the Project Gutenberg License included with this eBook or online at 07. www.gutenberg.org. If you are not located in the United States, you 08. will have to check the laws of the country where you are located before 09. using this eBook. 10. 11. Title: Pride and Prejudice 12. 13. Author: Jane Austen 14. 15. Release Date: June, 1998 16. [Most recently updated: August 23, 2021]
Vous pouvez voir qu'il y a des lignes vides dans la sortie ; nous pouvons utiliser le drapeau FILE_SKIP_EMPTY_LINES
标志来摆脱它们。另外,它可能不明显,但上面的行包含换行符。这就是为什么我们在回显这些行时不必添加自己的换行符。您可以使用 FILE_IGNORE_NEW_LINES
pour supprimer les lignes vides.
<?php $lines = file('pride-and-prejudice.txt', FILE_SKIP_EMPTY_LINES|FILE_IGNORE_NEW_LINES); $count = 0; foreach($lines as $line) { $count += 1; echo str_pad($count, 2, 0, STR_PAD_LEFT).". ".$line; } ?>
Le résultat avec ces drapeaux ressemblera à ceci :
01. The Project Gutenberg eBook of Pride and Prejudice, by Jane Austen 02. This eBook is for the use of anyone anywhere in the United States and 03. most other parts of the world at no cost and with almost no restrictions 04. whatsoever. You may copy it, give it away or re-use it under the terms 05. of the Project Gutenberg License included with this eBook or online at 06. www.gutenberg.org. If you are not located in the United States, you 07. will have to check the laws of the country where you are located before 08. using this eBook. 09. Title: Pride and Prejudice 10. Author: Jane Austen 11. Release Date: June, 1998 [eBook #1342] 12. [Most recently updated: August 23, 2021]
Si vous n'êtes pas préoccupé par l'utilisation de la mémoire, utiliser la fonction file()
函数是在 PHP 中逐行读取文件的简单方法。但是,如果内存使用成为问题,您将必须发挥更多创意,因为 file()
est un moyen simple de lire un fichier ligne par ligne en PHP. Cependant, si l'utilisation de la mémoire pose problème, vous devrez faire preuve de plus de créativité, car
fgets()
Lire des fichiers en utilisant
fgets()
函数。它有一个必需参数,即一个有效的文件句柄。我们将使用 fopen()
Une autre façon de lire un fichier ligne par ligne en utilisant PHP est d'utiliser la fonction
fopen()
pour accéder au handle de fichier. Voici le code que nous voulons exécuter :
<?php $file_handle = fopen('pride-and-prejudice.txt', 'r'); function get_all_lines($file_handle) { while (!feof($file_handle)) { yield fgets($file_handle); } } $count = 0; foreach (get_all_lines($file_handle) as $line) { $count += 1; echo $count.". ".$line; } fclose($file_handle); ?>
$file_handle
作为参数并返回一行。请注意,我们使用的是 yield
语句,并且我们的函数 get_all_lines()
Dans la première ligne, nous ouvrons le fichier en mode lecture seule. Ensuite, nous définissons une fonction qui accepte comme fonction génératrice. Si vous n'avez jamais utilisé de fonctions génératrices en PHP auparavant, vous voudrez peut-être en savoir plus sur elles. 我们在 get_all_lines()
中使用 feof()
函数来检查文件指针是否到达文件末尾。只要我们不在文件末尾,我们就会屈服。通过运行上面的代码,您应该得到以下输出:
1. The Project Gutenberg eBook of Pride and Prejudice, by Jane Austen 2. 3. This eBook is for the use of anyone anywhere in the United States and 4. most other parts of the world at no cost and with almost no restrictions 5. whatsoever. You may copy it, give it away or re-use it under the terms 6. of the Project Gutenberg License included with this eBook or online at 7. www.gutenberg.org. If you are not located in the United States, you 8. will have to check the laws of the country where you are located before 9. using this eBook. 10. 11. Title: Pride and Prejudice 12. 13. Author: Jane Austen 14. 15. Release Date: June, 1998 16. [Most recently updated: August 23, 2021]
输出看起来与我们上一节中的相同。这次唯一的区别是您不再面临内存不足的危险。
我之前提到过 fgets()
将允许您一次读取文件的一行,并且它只需要一个指向您要读取的文件的文件指针的参数。在这种情况下,内存消耗取决于行的长度,并且内存不足的可能性很小。
但是,假设您正在阅读一个包含异常长行的文本文件。然后,您可以将可选的第二个参数传递给 fgets()
函数,该函数指定要读取的字符数。然后,它将在停止之前从文件中读取 length - 1
字节。如果遇到新行或文件末尾,它将提前停止。这使您可以更好地控制代码的内存消耗。
我在本教程中讨论了两种使用 PHP 逐行读取文件的方法。还有几种方法可以做到这一点,但这两种方法几乎可以满足您的所有需求。当内存消耗不是问题时,请使用 file()
函数,如果您想节省内存,请使用 fgets()
和生成器函数。
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!