Clase XSLTProcessor

(PHP 5, PHP 7, PHP 8)

Introducción

Sinopsis de la Clase

XSLTProcessor {
/* Métodos */
getParameter(string $namespaceURI, string $localName): string
public getSecurityPrefs(): int
public importStylesheet(object $stylesheet): bool
registerPHPFunctions(mixed $restrict = ?): void
removeParameter(string $namespaceURI, string $localName): bool
setParameter(string $namespace, string $name, string $value): bool
setProfiling(string $filename): bool
public setSecurityPrefs(int $securityPrefs): int
transformToURI(DOMDocument $doc, string $uri): int
transformToXml(object $doc): string
}

Tabla de contenidos

add a note add a note

User Contributed Notes 3 notes

up
1
flavius
8 years ago
It requires PHP5 XSL extension. On linux:

sudo apt-get install php5-xsl
up
0
joandres52725lm at gmail dot com
4 years ago
[Update] PHP version /.3.15 and Windows Uncomment `extension=xsl` to activate it in your php.ini. Then restart your webserver to refresh php.
up
0
tschallacka
8 years ago
uncomment extension=php_xsl.dll on windows to activate it in your php.ini. Then restart your webserver to refresh php.
To Top