🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-19 10:14:52 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
thedasstores.com
/
wp-content
/
plugins
/
mailpoet
/
lib
/
Doctrine
/
WPDB
📍 /home/therahul/thedasstores.com/wp-content/plugins/mailpoet/lib/Doctrine/WPDB
🔄 Refresh
✏️
Editing: Result.php
Writable
<?php declare(strict_types = 1); namespace MailPoet\Doctrine\WPDB; if (!defined('ABSPATH')) exit; use MailPoetVendor\Doctrine\DBAL\Driver\Result as ResultInterface; /** * WPDB fetches all results from the underlying database driver, * so we need to implement the result methods on in-memory data. */ class Result implements ResultInterface { /** @var array[] */ private array $result = []; private int $rowCount; private int $cursor = 0; public function __construct( array $result, int $rowCount ) { foreach ($result as $row) { $this->result[] = (array)$row; } $this->rowCount = $rowCount; } public function fetchNumeric() { $row = $this->result[$this->cursor++] ?? null; return $row === null ? false : array_values($row); } public function fetchAssociative() { return $this->result[$this->cursor++] ?? false; } public function fetchOne() { $row = $this->result[$this->cursor++] ?? null; return $row === null ? false : reset($row); } public function fetchAllNumeric(): array { $result = []; foreach ($this->result as $row) { $result[] = array_values($row); } return $result; } public function fetchAllAssociative(): array { return $this->result; } public function fetchFirstColumn(): array { $result = []; foreach ($this->result as $row) { $result[] = reset($row); } return $result; } public function rowCount(): int { return $this->rowCount; } public function columnCount(): int { return count($this->result[0] ?? []); } public function free(): void { $this->cursor = 0; } }
💾 Save Changes
❌ Cancel