查找一个字符串并获取相关值
我有几个字符串,如何搜索第一个值并从中获取其他值?
print_r
或 ?
:
Array( [0] => Title,11,11 [1] => Would,22,22 [2] => Post,55,55 [3] => Ask,66,66 )
例如:
如果发送此数组值 Title
并获取值 Title,11,11
< br> 或者发送 Would
获取值 Would,22,22
或者发送 Post
获取值 Post,55,55
或者发送Ask
获取值Ask,66,66
怎么办呢?
I have several strings, how can I search the first value and get other values from it?
print_r
or ?
:
Array( [0] => Title,11,11 [1] => Would,22,22 [2] => Post,55,55 [3] => Ask,66,66 )
like:
If send for this array value Title
and getting values Title,11,11
Or send Would
getting values Would,22,22
Or send Post
getting values Post,55,55
Or send Ask
getting values Ask,66,66
How can do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
假设:
然后
现在
suppose:
then
Now
编写一个函数来搜索数组。这应该足够好
Write a function to search the array. This should work well enough
指数重要吗?为什么不..
are the indices important ? why not ..
怎么样使用类似的东西,这样你就不会循环整个数组:
How about using something like, so you don't loop trough entire array:
使用 foreach 循环数组,并将值与 strpos。
Loop over the array with foreach and match the value with strpos.