mirror of
https://github.com/php/php-src.git
synced 2024-11-26 03:16:33 +08:00
11 lines
250 B
Plaintext
11 lines
250 B
Plaintext
|
--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
|