Server IP : 172.67.216.182 / Your IP : 172.70.208.125 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/php/82/src/ext/spl/ |
Upload File : |
<?php /** @generate-class-entries */ class SplDoublyLinkedList implements Iterator, Countable, ArrayAccess, Serializable { /** * @var int * @cvalue SPL_DLLIST_IT_LIFO */ public const IT_MODE_LIFO = UNKNOWN; /** * @var int * @cvalue SPL_DLLIST_IT_FIFO */ public const IT_MODE_FIFO = UNKNOWN; /** * @var int * @cvalue SPL_DLLIST_IT_DELETE */ public const IT_MODE_DELETE = UNKNOWN; /** * @var int * @cvalue SPL_DLLIST_IT_KEEP */ public const IT_MODE_KEEP = UNKNOWN; /** @tentative-return-type */ public function add(int $index, mixed $value): void {} /** @tentative-return-type */ public function pop(): mixed {} /** @tentative-return-type */ public function shift(): mixed {} /** @tentative-return-type */ public function push(mixed $value): void {} /** @tentative-return-type */ public function unshift(mixed $value): void {} /** @tentative-return-type */ public function top(): mixed {} /** @tentative-return-type */ public function bottom(): mixed {} /** @tentative-return-type */ public function __debugInfo(): array {} /** @tentative-return-type */ public function count(): int {} /** @tentative-return-type */ public function isEmpty(): bool {} /** @tentative-return-type */ public function setIteratorMode(int $mode): int {} /** @tentative-return-type */ public function getIteratorMode(): int {} /** * @param int $index * @tentative-return-type */ public function offsetExists($index): bool {} /** * @param int $index * @tentative-return-type */ public function offsetGet($index): mixed {} /** * @param int|null $index * @tentative-return-type */ public function offsetSet($index, mixed $value): void {} /** * @param int $index * @tentative-return-type */ public function offsetUnset($index): void {} /** @tentative-return-type */ public function rewind(): void {} /** @tentative-return-type */ public function current(): mixed {} /** @tentative-return-type */ public function key(): int {} /** @tentative-return-type */ public function prev(): void {} /** @tentative-return-type */ public function next(): void {} /** @tentative-return-type */ public function valid(): bool {} /** @tentative-return-type */ public function unserialize(string $data): void {} /** @tentative-return-type */ public function serialize(): string {} /** @tentative-return-type */ public function __serialize(): array {} /** @tentative-return-type */ public function __unserialize(array $data): void {} } class SplQueue extends SplDoublyLinkedList { /** * @tentative-return-type * @implementation-alias SplDoublyLinkedList::push */ public function enqueue(mixed $value): void {} /** * @tentative-return-type * @implementation-alias SplDoublyLinkedList::shift */ public function dequeue(): mixed {} } class SplStack extends SplDoublyLinkedList { }