Re: Re: data type casting to numbers with intval() or doubleval()

Поиск
Список
Период
Сортировка
От Papp Gyozo
Тема Re: Re: data type casting to numbers with intval() or doubleval()
Дата
Msg-id 023601c16ea8$4c4c1460$01fdfea9@jaguar
обсуждение исходный текст
Ответ на Converting POSTGRESQL timestamp to UNIX timestamp  (Richie <dugganr@student.cs.ucc.ie>)
Список pgsql-php
> I think a regex would be most appropriate here:
>
> <?php
>
> $my_string = "mmm444";
>
> $my_integer = intval(eregi_replace("[a-z]", "", $my_string));
>
> print $my_integer;
>
> ?>
>
> This removes all letters and takes the int value.  In perl you can remove
> everything that's NOT a digit but I didn't figure that out in PHP yet...  this
> should do for now.

you're thinking of something like:

 $my_integer = intval(preg_replace('!\D+!', '', $my_string));

aren't you?

PCRE regular expression finctions are PERL compatible reg. functions
using PCRE library.


В списке pgsql-php по дате отправления:

Предыдущее
От: Craig Main
Дата:
Сообщение: Form Validaton
Следующее
От: Vince Vielhaber
Дата:
Сообщение: Re: Re: Secure pages