blob: 936d210a651275bc26d2951d58fa83d08fed2b4c (
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, string given in %s on line %d
|