当前位置: 首页>>代码示例>>PHP>>正文


PHP XSLTProcessor::setSecurityPreferences方法代码示例

本文整理汇总了PHP中XSLTProcessor::setSecurityPreferences方法的典型用法代码示例。如果您正苦于以下问题:PHP XSLTProcessor::setSecurityPreferences方法的具体用法?PHP XSLTProcessor::setSecurityPreferences怎么用?PHP XSLTProcessor::setSecurityPreferences使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在XSLTProcessor的用法示例。


在下文中一共展示了XSLTProcessor::setSecurityPreferences方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: applyXslt

 /**
  * @param string $inFile
  * @param string $xssFile
  * @param string $outFileOrDir
  * @throws \Exception
  */
 public static function applyXslt($inFile, $xssFile, $outFileOrDir)
 {
     if (!file_exists($inFile)) {
         throw new \Exception("File {$inFile} cannot be found");
     }
     if (!file_exists($xssFile)) {
         throw new \Exception("File {$xssFile} cannot be found");
     }
     // Load the XML source
     $xml = new \DOMDocument();
     $xml->load($inFile);
     $xsl = new \DOMDocument();
     $xsl->load($xssFile);
     // Configure the transformer
     $processor = new \XSLTProcessor();
     if (version_compare(PHP_VERSION, '5.4', "<")) {
         if (defined('XSL_SECPREF_WRITE_FILE')) {
             ini_set("xsl.security_prefs", XSL_SECPREF_CREATE_DIRECTORY | XSL_SECPREF_WRITE_FILE);
         }
     } else {
         // the php online docs only mention setSecurityPrefs, but somehow some installs have setSecurityPreferences...
         if (method_exists('XSLTProcessor', 'setSecurityPrefs')) {
             $processor->setSecurityPrefs(XSL_SECPREF_CREATE_DIRECTORY | XSL_SECPREF_WRITE_FILE);
         } else {
             $processor->setSecurityPreferences(XSL_SECPREF_CREATE_DIRECTORY | XSL_SECPREF_WRITE_FILE);
         }
     }
     $processor->importStyleSheet($xsl);
     // attach the xsl rules
     if (is_dir($outFileOrDir)) {
         if (!$processor->setParameter('', 'base.dir', realpath($outFileOrDir))) {
             echo "setting param base.dir KO\n";
         }
     }
     $out = $processor->transformToXML($xml);
     if (!is_dir($outFileOrDir)) {
         file_put_contents($outFileOrDir, $out);
     }
 }
开发者ID:shahzadsab,项目名称:phpxmlrpc,代码行数:45,代码来源:pakefile.php

示例2: die

if (!file_exists($xss)) {
    die("KO: file {$xss} cannot be found\n");
}
// Load the XML source
$xml = new DOMDocument();
$xml->load($doc);
$xsl = new DOMDocument();
$xsl->load($xss);
// Configure the transformer
$proc = new XSLTProcessor();
if (version_compare(PHP_VERSION, '5.4', "<")) {
    if (defined('XSL_SECPREF_WRITE_FILE')) {
        ini_set("xsl.security_prefs", XSL_SECPREF_CREATE_DIRECTORY | XSL_SECPREF_WRITE_FILE);
    }
} else {
    $proc->setSecurityPreferences(XSL_SECPREF_CREATE_DIRECTORY | XSL_SECPREF_WRITE_FILE);
}
$proc->importStyleSheet($xsl);
// attach the xsl rules
//if ($_SERVER['argc'] >= 4)
//{
if (is_dir($_SERVER['argv'][3])) {
    if (!$proc->setParameter('', 'base.dir', realpath($_SERVER['argv'][3]))) {
        echo "setting param base.dir KO\n";
    }
} else {
    //echo "{$_SERVER['argv'][3]} is not a dir\n";
}
//}
$out = $proc->transformToXML($xml);
if (!is_dir($_SERVER['argv'][3])) {
开发者ID:HaakonME,项目名称:porticoestate,代码行数:31,代码来源:convert.php


注:本文中的XSLTProcessor::setSecurityPreferences方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。