下面的代码选择包含单词“Homepage:”的每一行,并提取分号后面的内容。但是,我想要的是,如果与“主页:”一词匹配,则应抓取下一行的内容并将其放入变量中。
那怎么可能呢?
if (preg_match( '/Homepage:/', $text, $match )) {
$pieces = explode(':', $text);
$urls[] = trim($pieces[1]);
}
例子:
Homepage: <--- if match
http://www.fooland.com <--- grab this and put in variable