XSLTProcessor sınıfı

(PHP 5, PHP 7, PHP 8)

Giriş

Sınıf Sözdizimi

XSLTProcessor {
/* Yöntemler */
public getParameter(string $isimalanı, string $isim): string|false
public getSecurityPrefs(): int
public hasExsltSupport(): bool
public importStylesheet(object $biçembent): bool
public registerPHPFunctions(array|string|null $işlevler = null): void
public removeParameter(string $isimalanı, string $isim): bool
public setParameter(string $isimalanı, string $isim, string $değer): bool
public setProfiling(string|null $dosya): bool
public setSecurityPrefs(int $preferences): int
public transformToDoc(object $belge, string|null $dönenSınıf = null): DOMDocument|false
transformToURI(DOMDocument $belge, string $dosya): int
public transformToXml(object $belge): string|false|null
}

İçindekiler

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
3 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