Soap answert string - convert into arrray

只愿长相守 提交于 2019-12-25 04:43:17

问题


I have an Soap answer into php like these :

[...]1|Name of some Company
2|Name of some Company
3|Name of some Company
4|Name of some Company
5|Name of some Company
6|Name of some Company
7|Name of some Company
8|Name of some Company
9|Name of some Company

I need to convert in into php array like these

Array (
   1 => "Name of some Company", 
   2 =>"Name of some Company" 
   ....      
)

Into name of company are backspace also. Explode - no good result. Please, help.

Regards

来源:https://stackoverflow.com/questions/37737817/soap-answert-string-convert-into-arrray

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!