blob: 5ea9d61134b2398ef794c01eddc7441620f8038d (
plain)
1
2
3
4
5
6
7
8
|
--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)
|