CakeFest 2024: The Official CakePHP Conference

XSLTProcessor sınıfı

(PHP 5, PHP 7, PHP 8)

Giriş

Sınıf Sözdizimi

class XSLTProcessor {
/* Yöntemler */
public getParameter(string $isimalanı, string $isim): string|false
public importStylesheet(object $biçembent): bool
public removeParameter(string $isimalanı, string $isim): bool
public setParameter(string $isimalanı, string $isim, string $değer): bool
public setParameter(string $isimalanı, array $seçenekler): bool
public setProfiling(?string $dosya): true
public setSecurityPrefs(int $tercihler): int
public transformToDoc(object $belge, ?string $dönenSınıf = null): object|false
public transformToUri(object $belge, string $dosya): int
}

İçindekiler

add a note

User Contributed Notes 3 notes

up
5
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.
up
2
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
flavius
8 years ago
It requires PHP5 XSL extension. On linux:

sudo apt-get install php5-xsl
To Top