AV1611 Posted December 18, 2006 Share Posted December 18, 2006 This line of text explodes a line of text using a pipe for a delimiter[code]$col=explode("|",$line);[/code]How do I use a space for a delimiter? Link to comment https://forums.phpfreaks.com/topic/31133-explode/ Share on other sites More sharing options...
craygo Posted December 18, 2006 Share Posted December 18, 2006 put a space in[code]$col=explode(" ",$line);[/code]Ray Link to comment https://forums.phpfreaks.com/topic/31133-explode/#findComment-143778 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.