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;