我需要獲取html標記之間的名稱。html標記之間的preg_match
<div class="from"><span class="profile fn">firstnamed familyname</span></div>
到目前爲止,我按照同樣的問題,從其他永世例子嘗試:
preg_match(";from"><span class="profile fn>(.?)</span></div>;", $text, $match)
,但它不工作。
什麼是正確的方法?
非常感謝。
解釋「它不起作用」。 –
你應該嘗試使用'DOMDocument'解析HTML而不是正則表達式:http://stackoverflow.com/questions/2571232/parse-html-with-phps-html-domdocument – hsan
你沒有逃過preg_match調用中的引號。 –