Re: GMP object and is_scalar()
On Sun, Dec 29, 2013 at 5:09 PM, Yasuo Ohgaki <yohgaki@ohgaki.net> wrote:
> GMP object is object. Therefore, is_scalar() returns false for GMP
> objects.
>
> [yohgaki@dev php-src]$ ./php-bin -r '$v = gmp_init("0");
> var_dump(gettype($v));'
> string(6) "object"
> [yohgaki@dev php-src]$ ./php-bin -r '$v = gmp_init("0");
> var_dump(is_scalar($v));'
> bool(false)
>
> This is correct behavior, but this behavior is debatable, IMO.
>
> Any comments?
>
is_numeric() can be problematic also.
[yohgaki@dev php-src]$ ./php-bin -r '$v = gmp_init("0");
var_dump(is_numeric($v));'
bool(false)
--
Yasuo Ohgaki
yohgaki@ohgaki.net
Thread (17 messages)