PHP strtok 重置?
我以前没有使用过strtok,PHP手册没有给出很好的解释。
我想多次循环遍历标记化字符串。如何将其重置回开头?
I've not used strtok
before, the PHP manual doesn't give a very good explanation.
I want to loop through the tokenized string more than once. How do I reset it back to the beginning?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需再次使用两个参数调用
strtok
即可:来自 strtok官方文档:
Just call again
strtok
with two params and that is:From the strtok official doc:
正如文档所说:
As the documentation says:
正如其他人所说,您必须再次调用
strtok()
。这是一个简单地为您返回一个数组的函数:
在 codepad.org 上: http://codepad.org/2ySQ51TC
You have to call again
strtok()
as the others said.Here's a function which simply returns an array for you:
On codepad.org: http://codepad.org/2ySQ51TC