<?php $array = array('key' => 'value');$arrayobject = new ArrayObject($array);$iterator = $arrayobject->getIterator(); echo $iterator->key(); //key?>