PHP中将文件载入数组_PHP教程
程序员文章站
2024-02-04 08:39:34
...
使用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引用效率问题分析