PHP中将文件载入数组
程序员文章站
2024-02-13 14:47:10
...
使用file()函数将文件载入数组,文件中的每一行作为数组的一个元素。
实例:
array_file.php: view sourceprint?
实例:
array_file.php: view sourceprint?
01.
02.
$DOCUMENT_ROOT
=
$_SERVER
[
'DOCUMENT_ROOT'
];
03.
?>
04.
05.
06.
Test Array File
07.
08.
09.
10.
$peoples
= file(
$DOCUMENT_ROOT
.
'/test/03/people.txt'
);
11.
$count
=
count
(
$peoples
);
12.
if
(
$count
== 0) {
13.
echo
'NO peoples pending. Please try again later.'
;
14.
}
15.
for
(
$i
= 0;
$i
$count
;
$i
++) {
16.
echo
$peoples
[
$i
].
'
'
;
17.
}
18.
?>
19.
20.
下一篇: PHP截取中文字符串方法总结_PHP教程