XSLTProcessor::hasExsltSupport
(No version information available, might be only in CVS)
XSLTProcessor::hasExsltSupport — Determine if PHP has EXSLT support
설명
XSLTProcessor
bool
hasExsltSupport
( void
)
This method determine if PHP was built with the » EXSLT library.
반환값
ì„±ê³µí• ê²½ìš° TRUE를, ì‹¤íŒ¨í• ê²½ìš° FALSE를 반환합니다.
ì˜ˆì œ
Example#1 Testing EXSLT support
<?php
$proc = new XSLTProcessor;
if (!$proc->hasExsltSupport()) {
die('EXSLT support not available');
}
// do EXSLT stuff here ..
?>