0bc08.php

来自「介绍PHP5的给类型函数应用」· PHP 代码 · 共 18 行

PHP
18
字号
<?php// Include the library for Key Iteration//require 'KeyArrayIterator.php';require '0Bc07.php';// Declare our array of data$arr = array('Owen' => 'P', 'Steve' => 'P', 'Time' => 'D', 'Kevin' => 'B',	'Jay' => 'B', 'Amar' => 'Q', 'Dan' => 'Q', 'Ron' => 'S', 'John' => 'F' );// Declare a new Iterator of our own devising:$arrIt = new KeyArrayIterator($arr);// Now loop over them all as a foreach loop and echo both key and valueforeach ($arrIt as $entry) {	echo $entry->key, ' - ', $entry, "<br />\n";}?>

⌨️ 快捷键说明

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