techiefreak05 Posted May 2, 2007 Share Posted May 2, 2007 hello, i was wondering how i could turn this string "hello world", into this "hello+world". i know its simple, you use str_replace() right? but IDK the syntax for it. thanks. Link to comment https://forums.phpfreaks.com/topic/49591-solved-str_replace/ Share on other sites More sharing options...
clown[NOR] Posted May 2, 2007 Share Posted May 2, 2007 if you want to change space to + you user str_replace(" ", "+", $string); Link to comment https://forums.phpfreaks.com/topic/49591-solved-str_replace/#findComment-243148 Share on other sites More sharing options...
trq Posted May 2, 2007 Share Posted May 2, 2007 but IDK the syntax for it. Then look it up in the man. Easy. Link to comment https://forums.phpfreaks.com/topic/49591-solved-str_replace/#findComment-243149 Share on other sites More sharing options...
techiefreak05 Posted May 2, 2007 Author Share Posted May 2, 2007 thanks a lot. Link to comment https://forums.phpfreaks.com/topic/49591-solved-str_replace/#findComment-243154 Share on other sites More sharing options...
clown[NOR] Posted May 2, 2007 Share Posted May 2, 2007 no problem Link to comment https://forums.phpfreaks.com/topic/49591-solved-str_replace/#findComment-243159 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.