我如何使用preg_match
从网站中提取句子?
file_get_contents('http://link.com');
preg_match('/\Name of the day is\/', $page, $matches);
我想只提取包含“当天的名字”的句子并显示该句子。
答案 0 :(得分:0)
$page = file_get_contents('http://link.com');
$regex = '/Name of the day is (\w+)/'
preg_match($regex, $page, $matches);
如果需要,请参阅http://www.phpliveregex.com/p/24q进行调整。