我正在尝试将2个单独的文本文件导入到数组中,然后回显结果。一个文件包含街道名称,另一个包含街道描述:
例如:
街道名称 - 这是一条不错的街道。
到目前为止,我能够将第一个文件导入数组并使用foreach循环查看结果。
当我尝试在第一个中嵌套另一个foreach循环时,我什么也得不到。试图找出我做错了什么。
道歉,我对PHP很陌生。
<?php
$lines = file('files/streetnames.txt');
$lines2 = file('files/streetDescriptions.txt');
foreach ($lines as $streetName => $line) {
echo htmlspecialchars($line);
foreach($lines as $streetDes => $line2){
echo htmlspecialchars($line2);
break;
}
}
?>
1文本文件(streetNames.txt)中的数据:
Anderson Mill Road
第二个文件中的数据是(streetDescriptions.txt)
以工厂及其所有者托马斯安德森命名,他于19世纪50年代住在附近。
我想要达到的结果是:
安德森磨坊路(Anderson Mill Road) - 以一位工厂及其所有者托马斯·安德森(Thomas Anderson)命名,他于19世纪50年代住在附近。