XSLTProcessor::hasExsltSupport
(PHP 5 >= 5.0.4)
XSLTProcessor::hasExsltSupport — تعیین پشتیبانی PHP از EXSLT
Description
bool
XSLTProcessor::hasExsltSupport
( void
)
این متد مشخص میکند آیا کامپایل به همراه » EXSLT library انجام شده باشد.
Return Values
Returns TRUE on success or FALSE on failure.
Examples
Example #1 آزمایش پشتیبانی EXSLT
<?php
$proc = new XSLTProcessor;
if (!$proc->hasExsltSupport()) {
die('EXSLT support not available');
}
// do EXSLT stuff here ..
?>
There are no user contributed notes for this page.
