XSLTProcessor::hasExsltSupport
(PHP 5 >= 5.0.4, PHP 7, PHP 8)
XSLTProcessor::hasExsltSupport — Determine if PHP has EXSLT support
说明
This method determines if PHP was built with the » EXSLT library.
参数
此函数没有参数。
示例
示例 #1 Testing EXSLT support
<?php
$proc = new XSLTProcessor;
if (!$proc->hasExsltSupport()) {
die('EXSLT support not available');
}
// do EXSLT stuff here ..
?>
+添加备注
用户贡献的备注
此页面尚无用户贡献的备注。
备份地址:http://www.lvesu.com/blog/php/xsltprocessor.hasexsltsupport.php