Re: [PHP] Re: Removing nonlatin characters

2005-07-05 Thread Rene Brehmer
Documented research indicate that on Mon, 4 Jul 2005 19:29:38 +0300, Dotan Cohen wrote: > On 7/4/05, Rene Brehmer <[EMAIL PROTECTED]> wrote: > Documented research indicate that on Fri, 1 Jul 2005 13:58:23 +0300, Dotan > Cohen wrote: > > Totally forgot ... there is one advantage that you can contr

Re: [PHP] Re: Removing nonlatin characters

2005-07-04 Thread Dotan Cohen
On 7/4/05, Rene Brehmer <[EMAIL PROTECTED]> wrote: > Documented research indicate that on Fri, 1 Jul 2005 13:58:23 +0300, Dotan > Cohen wrote: > > > On 6/29/05, Rene Brehmer <[EMAIL PROTECTED]> wrote: > > I think you mean something like this: > > > > function stripAccents($string) { > > $returnS

Re: [PHP] Re: Removing nonlatin characters

2005-07-03 Thread Rene Brehmer
Documented research indicate that on Fri, 1 Jul 2005 13:58:23 +0300, Dotan Cohen wrote: > On 6/29/05, Rene Brehmer <[EMAIL PROTECTED]> wrote: > I think you mean something like this: > > function stripAccents($string) { > $returnString = strtr($string, > 'àáâãäçèéêëìíîïñòóôõöšùúûüýÀÁÂÃÄÇÈÉ

Re: [PHP] Re: Removing nonlatin characters

2005-07-03 Thread Rene Brehmer
Documented research indicate that on Fri, 1 Jul 2005 13:58:23 +0300, Dotan Cohen wrote: > On 6/29/05, Rene Brehmer <[EMAIL PROTECTED]> wrote: > I think you mean something like this: > > function stripAccents($string) { > $returnString = strtr($string, > 'àáâãäçèéêëìíîïñòóôõöšùúûüýÀÁÂÃÄÇÈÉ

Re: [PHP] Re: Removing nonlatin characters

2005-07-01 Thread Dotan Cohen
On 6/29/05, Rene Brehmer <[EMAIL PROTECTED]> wrote: > I think you mean something like this: > > function stripAccents($string) { > $returnString = strtr($string, > 'àáâãäçèéêëìíîïñòóôõöšùúûüýÀÁÂÃÄÇÈÉÊËÌÍÎÏÑÒÓÔÕÖŠÙÚÛÜÝ', > 'acnosyACNOSY'); > $return