ÿØÿà JFIF H H ÿÛ C ÿÛ Cÿ " ÿÄ ÿÄ ÿÚ ±5¬€ ÿÄ àÿÚ ÿÄ ÀÿÚ ? ÿÄ ÀÿÚ ? ÿÄ àÿÚ ? ÿÄ àÿÚ ?! ÿÚ ÿÄ ÀÿÚ ? ÿÄ ÀÿÚ ? ÿÄ àÿÚ ? ÿÙ
| Server IP : 160.25.81.117 / Your IP : 216.73.216.137 Web Server : Apache/2 System : Linux sv05.hilab.cloud 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : bellizen ( 1045) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/bellizen/public_html/vaoday/vendor/laradic/support/src/Traits/ |
Upload File : |
<?php
/**
* Part of the Laradic PHP packages.
*
* MIT License and copyright information bundled with this package in the LICENSE file
*/
namespace Laradic\Support\Traits;
/**
* Dot Array Access Trait
*
* @author Laradic Dev Team
* @copyright Copyright (c) 2015, Laradic
* @license https://tldrlegal.com/license/mit-license MIT License
* @package Laradic\Support
*/
trait DotArrayTrait
{
/**
* Get array accessor.
*
* @return mixed
*/
abstract protected function getArrayAccessor();
/**
* Determine if an item exists at an offset.
*
* @param mixed $offset
* @return bool
*/
public function offsetExists($offset)
{
return array_has($this{$this->getArrayAccessor()}, $offset);
}
/**
* Get an item at a given offset.
*
* @param mixed $offset
* @return mixed
*/
public function offsetGet($offset)
{
return array_get($this->{$this->getArrayAccessor()}, $offset);
}
/**
* Set the item at a given offset.
*
* @param $offset
* @param mixed $value
* @return $this
* @internal param mixed $key
*/
public function offsetSet($offset, $value = null)
{
if (is_array($offset)) {
foreach ($offset as $innerKey => $innerValue) {
array_set($this->{$this->getArrayAccessor()}, $innerKey, $innerValue);
}
} else {
array_set($this->{$this->getArrayAccessor()}, $offset, $value);
}
return $this;
}
/**
* Unset the item at a given offset.
*
* @param string $key
* @return $this
*/
public function offsetUnset($key)
{
array_set($this->{$this->getArrayAccessor()}, $key, null);
return $this;
}
/**
* getIterator
*
* @return \ArrayIterator
*/
public function getIterator()
{
return new \ArrayIterator($this->{$this->getArrayAccessor()});
}
}