123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- class SplFixedArray implements IteratorAggregate, ArrayAccess, Countable, JsonSerializable
- {
- public function __construct(int $size = 0) {}
-
- public function __wakeup(): void {}
-
- public function count(): int {}
-
- public function toArray(): array {}
-
- public static function fromArray(array $array, bool $preserveKeys = true): SplFixedArray {}
-
- public function getSize(): int {}
-
- public function setSize(int $size) {}
-
- public function offsetExists($index): bool {}
-
- public function offsetGet($index): mixed {}
-
- public function offsetSet($index, mixed $value): void {}
-
- public function offsetUnset($index): void {}
- public function getIterator(): Iterator {}
- public function jsonSerialize(): array {}
- }
|