XSLTProcessor 类

(PHP 5、PHP 7、PHP 8)

简介

类概要

class XSLTProcessor {
/* 方法 */
public getParameter(string $namespace, string $name): string|false
public importStylesheet(object $stylesheet): bool
public removeParameter(string $namespace, string $name): bool
public setParameter(string $namespace, string $name, string $value): bool
public setParameter(string $namespace, array $options): bool
public setProfiling(?string $filename): true
public setSecurityPrefs(int $preferences): int
public transformToDoc(object $document, ?string $returnClass = null): object|false
public transformToUri(object $document, string $uri): int
}

目录

添加备注

用户贡献的备注 3 个备注

tschallacka
8 年前
在 Windows 上取消注释 php.ini 中的 extension=php_xsl.dll 以激活它。然后重新启动您的 Web 服务器以刷新 PHP。
joandres52725lm at gmail dot com
4 年前
[更新] PHP 版本 /.3.15 和 Windows 取消注释 `extension=xsl` 以激活它在您的 php.ini 中。然后重新启动您的 Web 服务器以刷新 PHP。
flavius
8 年前
它需要 PHP5 XSL 扩展。在 Linux 上

sudo apt-get install php5-xsl
To Top