View Full Version : Spliter OR Delete
XAKERA
02-13-2008, 08:19 AM
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
str_replace('_', ' ', $tr)
james438
02-13-2008, 09:34 AM
$name=str_replace('_',' ',$name);
That should do the trick.
heh, ya beat me Twey ;)
EDIT: Fixed.
Heh. Note, the OP wanted to replace underscores ('_') with spaces (' ').
XAKERA
02-13-2008, 12:49 PM
Thanks work it. THanks all
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.