Sid Gifari File Manager
🏠 Root
/
home2
/
iuywvcmy
/
public_html
/
wp-content
/
plugins
/
beaver-builder-lite-version
/
includes
/
vendor
/
aweber
/
Editing: aweber_entry_data_array.php
<?php class AWeberEntryDataArray implements ArrayAccess, Countable, Iterator { private $counter = 0; protected $data; protected $keys; protected $name; protected $parent; public function __construct($data, $name, $parent) { $this->data = $data; $this->keys = array_keys($data); $this->name = $name; $this->parent = $parent; } #[\ReturnTypeWillChange] public function count() { return sizeOf($this->data); } #[\ReturnTypeWillChange] public function offsetExists($offset) { return (isset($this->data[$offset])); } #[\ReturnTypeWillChange] public function offsetGet($offset) { return $this->data[$offset]; } #[\ReturnTypeWillChange] public function offsetSet($offset, $value) { $this->data[$offset] = $value; $this->parent->{$this->name} = $this->data; return $value; } #[\ReturnTypeWillChange] public function offsetUnset($offset) { unset($this->data[$offset]); } #[\ReturnTypeWillChange] public function rewind() { $this->counter = 0; } #[\ReturnTypeWillChange] public function current() { return $this->data[$this->key()]; } #[\ReturnTypeWillChange] public function key() { return $this->keys[$this->counter]; } #[\ReturnTypeWillChange] public function next() { $this->counter++; } #[\ReturnTypeWillChange] public function valid() { if ($this->counter >= sizeOf($this->data)) { return false; } return true; } } ?>
Save
Cancel