ted_chou12 Posted December 25, 2006 Share Posted December 25, 2006 here I have "a b a" but I wish to explode inbetween the b and a. ie. i wish to explode at the scond space, is there a way to do that? Link to comment https://forums.phpfreaks.com/topic/31835-second-explode-symbol/ Share on other sites More sharing options...
Shu Posted December 25, 2006 Share Posted December 25, 2006 [code]<?php$bomb = "Making a bomb to explode";$bombpart = explode(' ', substr($bomb, strpos($bomb, ' ')+1));echo $bombpart[0];?>[/code] Link to comment https://forums.phpfreaks.com/topic/31835-second-explode-symbol/#findComment-147643 Share on other sites More sharing options...
ted_chou12 Posted December 25, 2006 Author Share Posted December 25, 2006 sorry mybad... the question is not even a qiestion... Link to comment https://forums.phpfreaks.com/topic/31835-second-explode-symbol/#findComment-147646 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.