Re: [PHP] better understanding of ereg_replace and other functions

2003-08-16 Thread Jaap van Ganswijk
At 2003-08-16 23:05 +, Curt Zirzow wrote: >* Thus wrote Binay Agarwal ([EMAIL PROTECTED]): >> Hi everybody, >> >> Lot of places in manual i came across using "ereg_replace" or "ereg" is very >> resource intensive and hence its better to use "preg_replace" or "str_replace" or >> "strpos" if t

Re: [PHP] better understanding of ereg_replace and other functions

2003-08-16 Thread Curt Zirzow
* Thus wrote Binay Agarwal ([EMAIL PROTECTED]): > Hi everybody, > > Lot of places in manual i came across using "ereg_replace" or "ereg" is very > resource intensive and hence its better to use "preg_replace" or "str_replace" or > "strpos" if they do the jobs. > I believe the use of ereg_repla

RE: [PHP] better understanding of ereg_replace and other functions

2003-08-16 Thread Wouter van Vliet
preg_replace_impl(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0); 1116 } 1117 /* }}} */ Greetz, Wouter -Oorspronkelijk bericht- Van: Binay Agarwal [mailto:[EMAIL PROTECTED] Verzonden: zaterdag 16 augustus 2003 2:39 Aan: [EMAIL PROTECTED] Onderwerp: [PHP] better understanding of ereg_replace

RE: [PHP] better understanding of ereg_replace and other functions

2003-08-16 Thread Boaz Yahav
Message- From: Binay Agarwal [mailto:[EMAIL PROTECTED] Sent: Saturday, August 16, 2003 2:39 AM To: [EMAIL PROTECTED] Subject: [PHP] better understanding of ereg_replace and other functions Hi everybody, Lot of places in manual i came across using "ereg_replace" or "ereg" is ver

[PHP] better understanding of ereg_replace and other functions

2003-08-16 Thread Binay Agarwal
Hi everybody, Lot of places in manual i came across using "ereg_replace" or "ereg" is very resource intensive and hence its better to use "preg_replace" or "str_replace" or "strpos" if they do the jobs. Now i am very curious to look at the source code (implementation) of these function so as t