[PHP] ereg_replace or chr bug?

2002-03-28 Thread Ando
Ok, what i wanna do is replace the codes in html with ascii equivalents: $text= ereg_replace('#([0-9]+);' , chr('\1') , $text); But somehow it doesnt work, i have no idea why. When i use $text= ereg_replace('#([0-9]+);' , '\1' , $text); it replaces everything correctly But $text=

RE: [PHP] ereg_replace or chr bug?

2002-03-28 Thread Rick Emery
] ereg_replace or chr bug? Ok, what i wanna do is replace the codes in html with ascii equivalents: $text= ereg_replace('#([0-9]+);' , chr('\1') , $text); But somehow it doesnt work, i have no idea why. When i use $text= ereg_replace('#([0-9]+);' , '\1' , $text); it replaces everything correctly

Re: [PHP] ereg_replace or chr bug?

2002-03-28 Thread Ando
the character specified by ascii. It replaces one (1) character, not a string -Original Message- From: Ando [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 28, 2002 6:59 AM To: [EMAIL PROTECTED] Subject: [PHP] ereg_replace or chr bug? Ok, what i wanna do is replace the codes

RE: [PHP] ereg_replace or chr bug?

2002-03-28 Thread Rick Emery
:[EMAIL PROTECTED]] Sent: Thursday, March 28, 2002 7:08 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] ereg_replace or chr bug? Not sure what you mean here $text= ereg_replace('#([0-9]+);' , chr('\1') , $text); should replace for example #65; with chr('65') (\1 means everything in brackets

Re: [PHP] ereg_replace or chr bug?

2002-03-28 Thread Ando
, ereg_replace() fails and simply returns the original string, $text. -Original Message- From: Ando [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 28, 2002 7:08 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] ereg_replace or chr bug? Not sure what you mean here $text= ereg_replace('#([0