Service Address
GERTRUDE HAGAMAN
2608 N LAKEVIEW DR
HAMMONTON, NJ 08037-3501
Manage XFINITY WiFi
Manage Xfinity wifi home hotspot setting
我需要提取
$name : GERTRUDE HAGAMAN
$address : 2608 N LAKEVIEW DR
$city : HAMMONTON
$state : NJ
$zipcode : 08037-3501
所以有任何建议
答案 0 :(得分:0)
<?php
preg_match('/service address\n*(.*)\n*(.*)\n((.*?),\s+(\w{2})\s+(.*))\n*manage xfinity wifi/i', $full_address, $match);
$name = $match[1];
$address = $match[2];
$city = $match[4];
$state = $match[5];
$zip = $match[6];
?>
只有在地址格式类似于您在上面发布的内容
时才会有效