ajicles Posted July 2, 2010 Share Posted July 2, 2010 Hello again, I need a little bit of help. I am trying to think of a way to use an if statement to change characters in a variable. Basically what I am saying is, I wanted to take say this: http://www.mywebsite.com/watch?v=Cy-YZ6H4sIE And change it in to this: http://www.mywebsite.com/v/Cy-YZ6H4sIE All it is removing is: watch?v= and replacing with: v/ If anybody could help me. Thanks again for helping me with my other questions. ~AJ I won't be back for 2 days to reply to any messages, until then thank you very much. Link to comment https://forums.phpfreaks.com/topic/206482-if-statement-contains/ Share on other sites More sharing options...
ajicles Posted July 2, 2010 Author Share Posted July 2, 2010 . Link to comment https://forums.phpfreaks.com/topic/206482-if-statement-contains/#findComment-1080090 Share on other sites More sharing options...
ZachMEdwards Posted July 2, 2010 Share Posted July 2, 2010 $str = str_replace('watch?v=', 'v/', $str); Link to comment https://forums.phpfreaks.com/topic/206482-if-statement-contains/#findComment-1080116 Share on other sites More sharing options...
ajicles Posted July 4, 2010 Author Share Posted July 4, 2010 Thank you very much. I plugged in the variables and everything works $str = str_replace('watch?v=', 'v/', $row[1]); Link to comment https://forums.phpfreaks.com/topic/206482-if-statement-contains/#findComment-1081066 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.