[PHP] Re: Question about strlen I think

2001-07-16 Thread CC Zona
In article [EMAIL PROTECTED], [EMAIL PROTECTED] (Dennis Kaandorp) wrote: Ah. I see why you're having trouble: documentation of the 'F' modifier has apparently be excised from the manual since the preg_replace_callback() has replaced it in PHP 4.0.5. If you've got 4.0.5, use the new function

[PHP] Re: Question about strlen I think

2001-07-15 Thread CC Zona
In article [EMAIL PROTECTED], [EMAIL PROTECTED] (Dennis Kaandorp) wrote: Is there a way to replace the spaces between the paths? This is what I mean: /uploads//by/ /dennis/ must become /uploads/4sp/by/3spdennis/ See http://php.net/preg-replace. You can use the e or f modifier to

[PHP] Re: Question about strlen I think

2001-07-15 Thread Dennis Kaandorp
Thank you very much! Cc Zona [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... In article [EMAIL PROTECTED], [EMAIL PROTECTED] (Dennis Kaandorp) wrote: Is there a way to replace the spaces between the paths? This is what I mean: /uploads//by/

[PHP] Re: Question about strlen I think

2001-07-15 Thread Dennis Kaandorp
argh.. it was to complicated for me :( Can you help me with this? $ftpdata['path'] = preg_replace($ftpdata['path']); Thnx Cc Zona [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... In article [EMAIL PROTECTED], [EMAIL PROTECTED] (Dennis Kaandorp) wrote: Is