mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-03 16:43:03 +00:00
9 lines
220 B
PHP
9 lines
220 B
PHP
<?php
|
|
interface ArrayAccess
|
|
{
|
|
public offsetExists(mixed $offset): bool
|
|
public offsetGet(mixed $offset): mixed
|
|
public offsetSet(mixed $offset, mixed $value): void
|
|
public offsetUnset(mixed $offset): void
|
|
}
|