143 lines
2.8 KiB
PHP

<?php
declare(strict_types=1);
namespace Yansongda\Supports\Traits;
trait Accessable
{
/**
* __get.
*
* @author yansongda <me@yansongda.cn>
*
* @return mixed
*/
public function __get(string $key)
{
return $this->get($key);
}
/**
* __set.
*
* @author yansongda <me@yansongda.cn>
*
* @param mixed $value
*
* @return mixed
*/
public function __set(string $key, $value)
{
return $this->set($key, $value);
}
/**
* get.
*
* @author yansongda <me@yansongda.cn>
*
* @param mixed $default
*
* @return mixed
*/
public function get(?string $key = null, $default = null)
{
if (is_null($key)) {
return method_exists($this, 'toArray') ? $this->toArray() : $default;
}
$method = 'get';
foreach (explode('_', $key) as $item) {
$method .= ucfirst($item);
}
if (method_exists($this, $method)) {
return $this->{$method}();
}
return $default;
}
/**
* set.
*
* @author yansongda <me@yansongda.cn>
*
* @param mixed $value
*
* @return $this
*/
public function set(string $key, $value)
{
$method = 'set';
foreach (explode('_', $key) as $item) {
$method .= ucfirst($item);
}
if (method_exists($this, $method)) {
return $this->{$method}($value);
}
return $this;
}
/**
* Whether a offset exists.
*
* @see https://php.net/manual/en/arrayaccess.offsetexists.php
*
* @param mixed $offset an offset to check for
*
* @return bool true on success or false on failure.
*
* The return value will be casted to boolean if non-boolean was returned.
*/
public function offsetExists($offset)
{
return !is_null($this->get($offset));
}
/**
* Offset to retrieve.
*
* @see https://php.net/manual/en/arrayaccess.offsetget.php
*
* @param mixed $offset the offset to retrieve
*
* @return mixed can return all value types
*/
public function offsetGet($offset)
{
return $this->get($offset);
}
/**
* Offset to set.
*
* @see https://php.net/manual/en/arrayaccess.offsetset.php
*
* @param mixed $offset the offset to assign the value to
* @param mixed $value the value to set
*
* @return void
*/
public function offsetSet($offset, $value)
{
$this->set($offset, $value);
}
/**
* Offset to unset.
*
* @see https://php.net/manual/en/arrayaccess.offsetunset.php
*
* @param mixed $offset the offset to unset
*
* @return void
*/
public function offsetUnset($offset)
{
}
}