And converts everything to integer except string, so in php the post process could be:
public function key() {
$yourKey = $this->createYourKey();
if (is_object($yourKey) || is_array($yourKey))
throw new Exception('Array and Object not allowed.');
elseif (is_string($yourKey))
return $yourKey;
else
return (int) $yourKey;
}
Iterator::key
(PHP 5 >= 5.0.0)
Iterator::key — بازگرداندن کلید جز فعلی
Description
abstract public scalar Iterator::key
( void
)
بازگرداندن کلید جز فعلی.
Parameters
This function has no parameters.
Return Values
بازگرداندن scalar در صورت موفقیت یا NULL در صورت خطا.
Errors/Exceptions
ایجاد E_NOTICE در صورت خطا.
Lszl Lajos Jnszky ¶
1 year ago
