/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ext/shmop/shmop.stub.php
22 строки
558 B
Tim Düsterhus
Replace `@deprecated` by `#[\Deprecated]` for internal functions / class constants (#14750)
10 июл 2024, 17:47
Не верифицирован
10 июл 2024, 17:47
29f98e7
Код
Авторство
О чём код?
<?php /** @generate-class-entries */ /** * @strict-properties * @not-serializable */ final class Shmop {} function shmop_open(int $key, string $mode, int $permissions, int $size): Shmop|false {} function shmop_read(Shmop $shmop, int $offset, int $size): string {} #[\Deprecated(since: '8.0', message: 'as Shmop objects are freed automatically')] function shmop_close(Shmop $shmop): void {} function shmop_size(Shmop $shmop): int {} function shmop_write(Shmop $shmop, string $data, int $offset): int {} function shmop_delete(Shmop $shmop): bool {}