mirror of
https://github.com/php/php-src.git
synced 2025-08-16 14:08:47 +02:00
8 lines
205 B
PHP
8 lines
205 B
PHP
--TEST--
|
|
SplFixedArray::offsetExists with various types
|
|
--CREDITS--
|
|
Gabriel Caruso (carusogabriel34@gmail.com)
|
|
--FILE--
|
|
<?php var_dump((new SplFixedArray(1))->offsetExists(0.1)); ?>
|
|
--EXPECT--
|
|
bool(false)
|