Server IP : 104.21.38.3 / Your IP : 104.23.175.104 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/80/src/ext/spl/ |
Upload File : |
<?php /** @generate-function-entries */ class SplPriorityQueue implements Iterator, Countable { /** @return int */ public function compare(mixed $priority1, mixed $priority2) {} /** @return bool */ public function insert(mixed $value, mixed $priority) {} /** @return int */ public function setExtractFlags(int $flags) {} /** @return mixed */ public function top() {} /** @return mixed */ public function extract() {} /** * @return int * @implementation-alias SplHeap::count */ public function count() {} /** * @return bool * @implementation-alias SplHeap::isEmpty */ public function isEmpty() {} /** * @return void * @implementation-alias SplHeap::rewind */ public function rewind() {} /** @return mixed */ public function current() {} /** * @return int * @implementation-alias SplHeap::key */ public function key() {} /** * @return void * @implementation-alias SplHeap::next */ public function next() {} /** * @return bool * @implementation-alias SplHeap::valid */ public function valid() {} /** * @return bool * @implementation-alias SplHeap::recoverFromCorruption */ public function recoverFromCorruption() {} /** * @return bool * @implementation-alias SplHeap::isCorrupted */ public function isCorrupted() {} /** @return int */ public function getExtractFlags() {} /** @return array */ public function __debugInfo() {} } abstract class SplHeap implements Iterator, Countable { /** @return mixed */ public function extract() {} /** @return bool */ public function insert(mixed $value) {} /** @return mixed */ public function top() {} /** @return int */ public function count() {} /** @return bool */ public function isEmpty() {} /** @return void */ public function rewind() {} /** @return mixed */ public function current() {} /** @return int */ public function key() {} /** @return void */ public function next() {} /** @return bool */ public function valid() {} /** @return bool */ public function recoverFromCorruption() {} /** @return int */ abstract protected function compare(mixed $value1, mixed $value2); /** @return bool */ public function isCorrupted() {} /** @return array */ public function __debugInfo() {} } class SplMinHeap extends SplHeap { /** @return int */ protected function compare(mixed $value1, mixed $value2) {} } class SplMaxHeap extends SplHeap { /** @return int */ protected function compare(mixed $value1, mixed $value2) {} }