PHP strpos(),找到回显实例
在 PHP 中使用 strpos()
函数,如何回显 strpos()
找到的内容?它找到的所有项目。谢谢
Using the strpos()
function in PHP, how can I echo what strpos()
has found? All items that it has found. Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
strpos 查找的是您告诉它查找的内容,因此本质上您是在问:
也许您实际上想做还有别的东西吗?
strpos finds is what you tell it to find, so in essense you're asking this:
Maybe you actually want to do something else?
strpos() 只返回大海捞针中找到的第一根针。如果你需要找到所有这些,你可以这样做:
打印 0、3 和 6。
编辑:我刚刚读了评论,我假设你的意思是函数找到的位置,也许我错了:-p
strpos() only returns the first needle found in the haystack. If you need to find all of them, you can do something like this :
which prints 0, 3 and 6.
Edit: I just read the comments, I assumed you meant the positions the function found, maybe I was wrong :-p