Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个像 w/e 更多的 HTML 的页面,我需要获取标签之间的所有数据,而不是第一个。目前我使用
<?php([^<]*?)\?>/"
但它抓住了第一个并停下来。有什么帮助吗?
查看功能preg_match_all。
preg_match_all
用这个preg_match_all()
preg_match_all()
preg_match_all("/<?php([^<]*?)\?>/siU",$html,$output); print_r($output[1]);