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.
我有一个字符串链接:
<blog_lasts limit=2>
但这部分可以更改:limit=5。id如何获取号码?
以及如何从更大的字符串中获取此字符串?
这是使用 preg_match_all()。它不是 HTML/XML 内容的首选,但不知道是否可以通过 DOMDocument 或仅通过字符串加载,这是最简单的方法。
$str = '<blog_lasts limit=2>'; preg_match_all("/<blog_lasts limit=(.*?)>/",$str,$matches); $num = $matches[1][0]; echo $num;