blob: 9ccc693d55eaea643b12eaf7d8125d59d7a739b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--TEST--
SPL: FixedArray: Trying to instantiate passing object to constructor parameter
--FILE--
<?php
$b = new stdClass;
$a = new SplFixedArray($b);
?>
--EXPECTF--
Warning: SplFixedArray::__construct() expects parameter 1 to be long, object given in %s on line %d
|