| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- declare(strict_types=1);
- namespace Yansongda\Supports\Traits;
- trait Serializable
- {
- public function __serialize(): array
- {
- if (method_exists($this, 'toArray')) {
- return $this->toArray();
- }
- return [];
- }
- public function __unserialize(array $data): void
- {
- $this->unserializeArray($data);
- }
- public function __toString(): string
- {
- return $this->toJson();
- }
- public function serialize(): ?string
- {
- return serialize($this);
- }
- public function unserialize(string $data): void
- {
- unserialize($data);
- }
- public function toJson(int $option = JSON_UNESCAPED_UNICODE): string
- {
- return json_encode($this->__serialize(), $option);
- }
- public function jsonSerialize(): array
- {
- return $this->__serialize();
- }
- public function unserializeArray(array $data): self
- {
- foreach ($data as $key => $item) {
- if (method_exists($this, 'set')) {
- $this->set(strval($key), $item);
- }
- }
- return $this;
- }
- }
|