File manager - Edit - /usr/local/cpanel/3rdparty/share/phpPgAdmin/classes/ArrayRecordSet.php
Back
<?php /** * Really simple RecordSet to allow printTable of arrays. * * $Id: ArrayRecordSet.php,v 1.3 2007/01/10 01:46:28 soranzo Exp $ */ class ArrayRecordSet { var $_array; var $_count; var $EOF = false; var $fields; function __construct($data) { $this->_array = $data; $this->_count = count($this->_array); $this->fields = reset($this->_array); if ($this->fields === false) $this->EOF = true; } function recordCount() { return $this->_count; } function moveNext() { $this->fields = next($this->_array); if ($this->fields === false) $this->EOF = true; } } ?>
| ver. 1.4 |
Github
|
.
| PHP 8.1.34 | Generation time: 0.04 |
proxy
|
phpinfo
|
Settings