我正在编写一个从 CSV 文件中读取 MAC 地址和位置的脚本。问题是,我使用了 preg_match_all 两次。第一个是找到MAC地址。第二个是基于写入位置的格式。我知道这两个正则表达式都有效,因为我已经切换了它们。
我试图得到这样的输出:
Mac Adress 0c:85:25:c7:ab:f0 is located in Tilburg-Compleet > P1 > P1-2e
但是,我现在收到的输出是:
Mac 地址0c:85:25:c7:ab:f0位于
请帮忙?
亲切的问候,布赖恩
<?php
if (($handle = fopen("AP_Summary_20121004_104813_198.csv", "r")) !== FALSE) {
while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
$num = count($data);
for ($i=0; $i < $num; $i++) {
$m = preg_match_all('~[0-9a-f]{2}[:-][0-9a-f]{2}[:-][0-9a-f]{2}[:-][0-9a-f]{2}[:-][0-9a-f]{2}[:-][0-9a-f]{2}~', $data[$i], $match);
$c = preg_match_all('~^.{1,}\s\W\s.{1,}\s\W\s$~', $data[$i], $matches);
if ($m) {
foreach ($match as $val){
foreach ($matches as $values){
echo 'The Mac Address <b>' . $val[0] . '</b> is located in <b>' . $values[0] . '</b><br /><br />';
}
}
}
}
}
fclose($handle);
}
?>
这是 CSV 文件的一小部分
EHV-R1-1e-109113 ,d8:24:bd:e9:ce:f0 ,Eindhoven-rachelsemolen-TUE-TF > R1 > R1-1e ,Enabled
EHV-R1-1e-109117 ,d8:24:bd:e9:e6:40 ,Eindhoven-rachelsemolen-TUE-TF > R1 > R1-1e ,Enabled
EHV-R1-1e-109118 ,d8:24:bd:e9:ed:b0 ,Eindhoven-rachelsemolen-TUE-TF > R1 > R1-1e ,Enabled
Ehv-R1-2e-27088 ,00:12:44:ba:1e:00 ,Eindhoven-rachelsemolen-TUE-TF > R1 > R1-2e ,Enabled
Ehv-R1-2e-27090 ,00:12:44:ba:1f:b0 ,Eindhoven-rachelsemolen-TUE-TF > R1 > R1-2e ,Enabled
Ehv-R1-2e-27086 ,00:12:44:ba:20:c0 ,Eindhoven-rachelsemolen-TUE-TF > R1 > R1-2e ,Enabled
Ehv-R1-2e-27087 ,00:12:44:ba:21:40 ,Eindhoven-rachelsemolen-TUE-TF > R1 > R1-2e ,Enabled
Ehv-R1-2e-27084 ,00:12:44:ba:2b:10 ,Eindhoven-rachelsemolen-TUE-TF > R1 > R1-2e ,Enabled
Ehv-R1-2e-27085 ,00:12:44:ba:32:a0 ,Eindhoven-rachelsemolen-TUE-TF > R1 > R1-2e ,Enabled
Ehv-R1-2e-27094 ,00:12:44:ba:77:10 ,Eindhoven-rachelsemolen-TUE-TF > R1 > R1-2e ,Enabled
Ehv-R1-2e-63664 ,00:1b:8f:89:28:c0 ,Eindhoven-rachelsemolen-TUE-TF > R1 > R1-2e ,Enabled
Ehv-R1-2e-100264 ,00:3a:98:62:ae:a0 ,Eindhoven-rachelsemolen-TUE-TF > R1 > R1-2e ,Enabled
Ehv-R1-2e-100266 ,00:3a:98:62:af:e0 ,Eindhoven-rachelsemolen-TUE-TF > R1 > R1-2e ,Enabled
Ehv-R1-2e-100263 ,00:3a:98:72:b6:40 ,Eindhoven-rachelsemolen-TUE-TF > R1 > R1-2e ,Enabled
Ehv-R1-2e-100265 ,00:3a:98:72:b9:f0 ,Eindhoven-rachelsemolen-TUE-TF > R1 > R1-2e ,Enabled
Ehv-R1-2e-100261 ,00:3a:98:72:ba:f0 ,Eindhoven-rachelsemolen-TUE-TF > R1 > R1-2e ,Enabled