⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 array_014.phpt

📁 PHP v6.0 For Linux 运行环境:Win9X/ WinME/ WinNT/ Win2K/ WinXP
💻 PHPT
字号:
--TEST--SPL: ArrayIterator::seek()--SKIPIF--<?php if (!extension_loaded("spl")) print "skip"; ?>--FILE--<?php$it = new ArrayIterator(range(0,10));var_dump($it->count());$it->seek(5);var_dump($it->current());$it->seek(4);var_dump($it->current());try{	$it->seek(-1);	var_dump($it->current());}catch(Exception $e){	echo $e->getMessage() . "\n";}try{	$it->seek(12);	var_dump($it->current());}catch(Exception $e){	echo $e->getMessage() . "\n";}$pos = 0;foreach($it as $v){	$it->seek($pos++);	var_dump($v);}?>===DONE===<?php exit(0); ?>--EXPECTF--int(11)int(5)int(4)Seek position -1 is out of rangeSeek position 12 is out of rangeint(0)int(1)int(2)int(3)int(4)int(5)int(6)int(7)int(8)int(9)int(10)===DONE===

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -