esas_nefret Posted July 16, 2010 Share Posted July 16, 2010 Hi there, I have a result coming from external website. The result is like this: OK:0001:0.018:4490123;OK:0002:0.018:4412333;OK:0012:0.025:44903121231; The separator of this result is ";" . So the result should be like this: OK:0001:0.018:4490123 OK:0002:0.018:4412333 OK:0012:0.025:44903121231 Thank you. Link to comment https://forums.phpfreaks.com/topic/207927-arrays/ Share on other sites More sharing options...
plutomed Posted July 16, 2010 Share Posted July 16, 2010 $array = explode(";", $string); Link to comment https://forums.phpfreaks.com/topic/207927-arrays/#findComment-1086981 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.