mirror of
https://github.com/php/php-src.git
synced 2024-12-04 23:34:25 +08:00
17 lines
455 B
PHP
17 lines
455 B
PHP
--TEST--
|
|
SPL: SplCachingIterator, Test method to convert current element to string
|
|
--CREDITS--
|
|
Chris Scott chris.scott@nstein.com
|
|
#testfest London 2009-05-09
|
|
--FILE--
|
|
<?php
|
|
|
|
$ai = new ArrayIterator(array(new stdClass(), new stdClass()));
|
|
$ci = new CachingIterator($ai);
|
|
var_dump(
|
|
$ci->__toString() // if conversion to string is done by echo, for example, an exeption is thrown. Invoking __toString explicitly covers different code.
|
|
);
|
|
?>
|
|
--EXPECTF--
|
|
NULL
|