mirror of
https://github.com/php/php-src.git
synced 2025-08-16 14:08:47 +02:00
57 lines
1.4 KiB
PHP
57 lines
1.4 KiB
PHP
<?php
|
|
|
|
/** @generate-function-entries */
|
|
|
|
class XSLTProcessor
|
|
{
|
|
/** @return bool */
|
|
public function importStylesheet(object $stylesheet) {}
|
|
|
|
/**
|
|
* @param DOMDocument|SimpleXMLElement $document
|
|
* @return DOMDocument|false
|
|
*/
|
|
public function transformToDoc(object $document, ?string $return_class = null) {}
|
|
|
|
/**
|
|
* @param DOMDocument|SimpleXMLElement $document
|
|
* @return int
|
|
*/
|
|
public function transformToUri(object $document, string $uri) {}
|
|
|
|
/**
|
|
* @param DOMDocument|SimpleXMLElement $document
|
|
* @return string|false|null
|
|
*/
|
|
public function transformToXml(object $document) {}
|
|
|
|
/**
|
|
* @param string|array $name
|
|
* @return bool
|
|
*/
|
|
public function setParameter(string $namespace, $name, string $value = UNKNOWN) {}
|
|
|
|
/** @return string|false */
|
|
public function getParameter(string $namespace, string $name) {}
|
|
|
|
/** @return bool */
|
|
public function removeParameter(string $namespace, string $name) {}
|
|
|
|
/** @return bool */
|
|
public function hasExsltSupport() {}
|
|
|
|
/**
|
|
* @param string|array|null $restrict
|
|
* @return void
|
|
*/
|
|
public function registerPHPFunctions($restrict = null) {}
|
|
|
|
/** @return bool */
|
|
public function setProfiling(?string $filename) {}
|
|
|
|
/** @return int */
|
|
public function setSecurityPrefs(int $securityPrefs) {}
|
|
|
|
/** @return int */
|
|
public function getSecurityPrefs() {}
|
|
}
|