继续学习PHP。现在我使用正则表达式从站点获取数据作为格式化文本。 每个字符串都在两个文件中的新行中。 第一个文件的内容:
John
Egor
Tim
Laura
第二个文件的内容:
18
23
48
33
需要像这样打印出来:
John 18
Egor 23
Tim 48
Laura 33
第一个文件的代码:
//..some regex action here ..
foreach ($names as $name) {
echo "$name";
}
我应该包含此文件? :
//..some regex action here ..
foreach ($numbers as $nr) {
echo "$nr"; //printing
}