On Wed, August 8, 2007 5:39 pm, Joker7 wrote:
> Can anyone give me some pointer,here's my problem.I wish to move a
> file from
> a local server to a remote one.The file is in the format
> ([EMAIL PROTECTED]) on moving the file to the remote server I
> wish to
> remove the time stamp part of the file and just leave ( video.jpg ).
> To be
> trueful I don't have a clue where to start I did a bit of Google-ing
> to see
> if I could find a ready made script with out luck.So any help will be
> most
> welcome.

Where is the PHP bit?...

$filename = preg_replace("|@[0-9]{14}|", "", $filename);
will get rid of the @yyyymmddhhiiss part.

How you "move" the file is probably not real relevant to PHP anyway...

-- 
Some people have a "gift" link here.
Know what I want?
I want you to buy a CD from some indie artist.
http://cdbaby.com/browse/from/lynch
Yeah, I get a buck. So?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to