I am made mp3 file upload system. and please help me in one: When file upload before upload change name if filename is Artist_-_musicname.mp3 change name with this Artist - musicname.mp3 I want delete _ this symbol.
THanks
I am made mp3 file upload system. and please help me in one: When file upload before upload change name if filename is Artist_-_musicname.mp3 change name with this Artist - musicname.mp3 I want delete _ this symbol.
THanks
Code:str_replace('_', ' ', $tr)
Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!
That should do the trick.Code:$name=str_replace('_',' ',$name);
heh, ya beat me Twey
EDIT: Fixed.
Last edited by james438; 02-13-2008 at 10:09 AM.
Heh. Note, the OP wanted to replace underscores ('_') with spaces (' ').
Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!
Thanks work it. THanks all
Bookmarks