mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
18 lines
416 B
PHP
18 lines
416 B
PHP
--TEST--
|
|
SplDoublyLinkedList::offsetGet() with 1st parameter passed as string.
|
|
--CREDITS--
|
|
PHPNW Test Fest 2009 - Jordan Hatch
|
|
--FILE--
|
|
<?php
|
|
|
|
$array = new SplDoublyLinkedList( );
|
|
|
|
$get = $array->offsetGet( 'fail' );
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught TypeError: SplDoublyLinkedList::offsetGet(): Argument #1 ($index) must be of type int, string given in %s
|
|
Stack trace:
|
|
#0 %s
|
|
#1 {main}
|
|
thrown in %s on line %d
|