Server IP : 172.67.216.182 / Your IP : 172.70.208.23 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/xsl/ |
Upload File : |
<?php /** @generate-class-entries */ /** @var int */ const XSL_CLONE_AUTO = 0; /** @var int */ const XSL_CLONE_NEVER = -1; /** @var int */ const XSL_CLONE_ALWAYS = 1; /** * @var int * @cvalue XSL_SECPREF_NONE */ const XSL_SECPREF_NONE = UNKNOWN; /** * @var int * @cvalue XSL_SECPREF_READ_FILE */ const XSL_SECPREF_READ_FILE = UNKNOWN; /** * @var int * @cvalue XSL_SECPREF_WRITE_FILE */ const XSL_SECPREF_WRITE_FILE = UNKNOWN; /** * @var int * @cvalue XSL_SECPREF_CREATE_DIRECTORY */ const XSL_SECPREF_CREATE_DIRECTORY = UNKNOWN; /** * @var int * @cvalue XSL_SECPREF_READ_NETWORK */ const XSL_SECPREF_READ_NETWORK = UNKNOWN; /** * @var int * @cvalue XSL_SECPREF_WRITE_NETWORK */ const XSL_SECPREF_WRITE_NETWORK = UNKNOWN; /** * @var int * @cvalue XSL_SECPREF_DEFAULT */ const XSL_SECPREF_DEFAULT = UNKNOWN; /** * @var int * @cvalue LIBXSLT_VERSION */ const LIBXSLT_VERSION = UNKNOWN; /** * @var string * @cvalue LIBXSLT_DOTTED_VERSION */ const LIBXSLT_DOTTED_VERSION = UNKNOWN; #ifdef HAVE_XSL_EXSLT /** * @var int * @cvalue LIBEXSLT_VERSION */ const LIBEXSLT_VERSION = UNKNOWN; /** * @var string * @cvalue LIBEXSLT_DOTTED_VERSION */ const LIBEXSLT_DOTTED_VERSION = UNKNOWN; #endif class XSLTProcessor { /** * @param DOMDocument|SimpleXMLElement $stylesheet * @tentative-return-type */ public function importStylesheet(object $stylesheet): bool {} /** * @param DOMDocument|SimpleXMLElement $document * @tentative-return-type */ public function transformToDoc(object $document, ?string $returnClass = null): object|false {} /** * @param DOMDocument|SimpleXMLElement $document * @tentative-return-type */ public function transformToUri(object $document, string $uri): int {} /** * @param DOMDocument|SimpleXMLElement $document * @tentative-return-type */ public function transformToXml(object $document): string|null|false {} /** @tentative-return-type */ public function setParameter(string $namespace, array|string $name, ?string $value = null): bool {} /** @tentative-return-type */ public function getParameter(string $namespace, string $name): string|false {} /** @tentative-return-type */ public function removeParameter(string $namespace, string $name): bool {} /** @tentative-return-type */ public function hasExsltSupport(): bool {} /** @tentative-return-type */ public function registerPHPFunctions(array|string|null $functions = null): void {} /** @return bool */ public function setProfiling(?string $filename) {} // TODO make the return type void /** @tentative-return-type */ public function setSecurityPrefs(int $preferences): int {} /** @tentative-return-type */ public function getSecurityPrefs(): int {} }