blob: c386fc638e30030d8bf580b69522ec442ccb5b2c (
plain)
1
2
3
4
5
6
7
8
9
10
|
--TEST--
SPL: FixedArray: Trying to instantiate passing string to construtor parameter
--FILE--
<?php
$a = new SplFixedArray('FOO');
?>
--EXPECTF--
Warning: SplFixedArray::__construct() expects parameter 1 to be integer, string given in %s on line %d
|