Server IP : 104.21.38.3 / Your IP : 172.70.189.140 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/session/ |
Upload File : |
<?php /** @generate-function-entries */ function session_name(?string $name = null): string|false {} function session_module_name(?string $module = null): string|false {} function session_save_path(?string $path = null): string|false {} function session_id(?string $id = null): string|false {} function session_create_id(string $prefix = ""): string|false {} function session_regenerate_id(bool $delete_old_session = false): bool {} function session_decode(string $data): bool {} function session_encode(): string|false {} function session_destroy(): bool {} function session_unset(): bool {} function session_gc(): int|false {} function session_get_cookie_params(): array {} function session_write_close(): bool {} function session_abort(): bool {} function session_reset(): bool {} function session_status(): int {} function session_register_shutdown(): void {} /** @alias session_write_close */ function session_commit(): bool {} /** * @param callable|object $open * @param callable|bool $close */ function session_set_save_handler( $open, $close = UNKNOWN, callable $read = UNKNOWN, callable $write = UNKNOWN, callable $destroy = UNKNOWN, callable $gc = UNKNOWN, callable $create_sid = UNKNOWN, callable $validate_sid = UNKNOWN, callable $update_timestamp = UNKNOWN ): bool {} function session_cache_limiter(?string $value = null): string|false {} function session_cache_expire(?int $value = null): int|false {} function session_set_cookie_params(array|int $lifetime_or_options, ?string $path = null, ?string $domain = null, ?bool $secure = null, ?bool $httponly = null): bool {} function session_start(array $options = []): bool {} interface SessionHandlerInterface { /** @return bool */ public function open(string $path, string $name); /** @return bool */ public function close(); /** @return string|false */ public function read(string $id); /** @return bool */ public function write(string $id, string $data); /** @return bool */ public function destroy(string $id); /** @return int|false */ public function gc(int $max_lifetime); } interface SessionIdInterface { /** @return string */ public function create_sid(); } interface SessionUpdateTimestampHandlerInterface { /** @return bool */ public function validateId(string $id); /** @return bool */ public function updateTimestamp(string $id, string $data); } class SessionHandler implements SessionHandlerInterface, SessionIdInterface { /** @return bool */ public function open(string $path, string $name) {} /** @return bool */ public function close() {} /** @return string|false */ public function read(string $id) {} /** @return bool */ public function write(string $id, string $data) {} /** @return bool */ public function destroy(string $id) {} /** @return int|false */ public function gc(int $max_lifetime) {} /** @return string */ public function create_sid() {} }