blob: 0d9b47a87ada140bba4e4db72998e30a42fb164e (
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 long, Unicode string given in %s on line %d
|