我该怎么做?例如我有这个文本(它是一个源代码):
Welcome to asdfasdf, <h2>Welcome</h2>, <a href="index.php?my_id=1">Homepage</a>,
<br />, Hi, this is some text.
Check <a href="index.php?my_id=12945">this link</a> or
<a href="index.php?my_id=138>this link</a> for more information.
<br /><strong>Thanks</strong>
现在我想用 php 在这个字符串中搜索“my_id”并显示所有的 id。所以输出将是:
1
12945
138
希望你能理解我。谢谢!