• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP xslt_errno函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中xslt_errno函数的典型用法代码示例。如果您正苦于以下问题:PHP xslt_errno函数的具体用法?PHP xslt_errno怎么用?PHP xslt_errno使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



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

示例1: perform_xslt

function perform_xslt($xml, $s, $islast, $isfirst, $param_path)
{
    global $base_path, $charset;
    $transform = "{$base_path}/admin/convert/imports/" . $param_path . "/" . $s['XSLFILE'][0]['value'];
    //Si c'est la première transformation, on rajoute les entêtes
    if ($isfirst) {
        if ($s['ENCODING']) {
            $xml1 = "<?xml version=\"1.0\" encoding=\"" . $s['ENCODING'] . "\"?>\n<" . $s['ROOTELEMENT'][0]["value"];
        } else {
            $xml1 = "<?xml version=\"1.0\" encoding=\"{$charset}\"?>\n<" . $s['ROOTELEMENT'][0]["value"];
        }
        if ($s["NAMESPACE"]) {
            $xml1 .= " xmlns:" . $s["NAMESPACE"][0]["ID"] . "='" . $s["NAMESPACE"][0]["value"] . "' ";
        }
        $xml1 .= ">\n" . $xml . "\n</" . $s['ROOTELEMENT'][0]['value'] . ">";
        $xml = $xml1;
    }
    $f = fopen($transform, "r");
    $xsl = fread($f, filesize($transform));
    fclose($f);
    //Création du processeur
    $xh = xslt_create();
    //Encodage = $charset
    if (defined("ICONV_IMPL")) {
        xslt_set_encoding($xh, "{$charset}");
    }
    // Traite le document
    if ($result = @xslt_process($xh, 'arg:/_xml', 'arg:/_xsl', NULL, array("/_xml" => $xml, "/_xsl" => $xsl))) {
        $r['VALID'] = true;
        $r['DATA'] = $result;
        $r['ERROR'] = "";
        //Si c'est la dernière transformation, on supprime les entêtes et l'élément root
        if ($islast) {
            $p = preg_match("/<" . $s['TNOTICEELEMENT'][0]['value'] . "(?:\\ [^>]*|)>/", $r["DATA"], $m, PREG_OFFSET_CAPTURE);
            if ($p) {
                $r['DATA'] = "  " . substr($r['DATA'], $m[0][1]);
            }
            $p1 = 0;
            $p = 0;
            while ($p !== false) {
                $p1 = $p;
                $p = @strpos($r['DATA'], "</" . $s['TNOTICEELEMENT'][0]['value'] . ">", $p1 + strlen("</" . $s['TNOTICEELEMENT'][0]['value'] . ">"));
            }
            if ($p1 !== false && $p1 != 0) {
                $r['DATA'] = substr($r['DATA'], 0, $p1 + strlen($s['TNOTICEELEMENT'][0]['value']) + 3) . "\n";
            }
        }
    } else {
        $r['VALID'] = false;
        $r['DATA'] = "";
        $r['ERROR'] = "Sorry, notice could not be transformed by {$transform} the reason is that " . xslt_error($xh) . " and the error code is " . xslt_errno($xh);
    }
    xslt_free($xh);
    return $r;
}
开发者ID:noble82,项目名称:proyectos-ULS,代码行数:55,代码来源:xmltransform.php


示例2: transform

 function transform()
 {
     $args = array("/_stylesheet", $this->xsl, "/_xmlinput", $this->xml, "/_output", 0, 0);
     if ($err = xslt_run($this->processor, "arg:/_stylesheet", "arg:/_xmlinput", "arg:/_output", 0, $args)) {
         $output = xslt_fetch_result($this->processor, "arg:/_output");
         $this->setOutput($output);
     } else {
         $this->setError(xslt_error($this->processor));
         $this->setErrorCode(xslt_errno($this->processor));
     }
 }
开发者ID:Ethennoob,项目名称:Web,代码行数:11,代码来源:xslt-4.0.php


示例3: transform

 function transform()
 {
     $args = array('/_xml' => $this->xml, '/_xsl' => $this->xsl);
     $result = xslt_process($this->processor, 'arg:/_xml', 'arg:/_xsl', NULL, $args);
     if ($result) {
         $this->setOutput($result);
     } else {
         //            $err = "Error: " . xslt_error ($this->processor) . " Errorcode: " . xslt_errno ($this->processor);
         $this->setError(xslt_error($this->processor));
         $this->setErrorCode(xslt_errno($this->processor));
     }
 }
开发者ID:padlrosa,项目名称:Regional-2,代码行数:12,代码来源:xslt.php


示例4: output

function output($output)
{
    /* Falls die Seite als HTML ausgegeben werden soll */
    /* Eine Weiche einbauen, fals die XSLT Extension nicht geladen ist -> 
       http://koders.com/php/fidB0434D36F01703F9ACAB5E21065E315FE44D2C57.aspx?s=xslt_process
       http://koders.com/php/fid78371B5F37DAE258E3258B91CC791A712CBF2AAC.aspx?s=xslt_process
       */
    if (isset($_SESSION['variables']['extention']) and $_SESSION['variables']['extention'] == "html" and IS_XSLT) {
        if (version_compare(phpversion(), "5.0", ">")) {
            $processor = new XSLTProcessor();
            $xmlDom = new DOMDocument();
            $xslDom = new DOMDocument();
            $xmlDom->loadXML($output);
            $xslDom->load(BIN_DIR . "xslt/index.xsl");
            $processor->importstylesheet($xslDom);
            /* Transformiert den Output
               :TODO: Fehlerabfrage der Resultates
               :ATTENTION: eventuell werden die im XSL-File includeten Dateien falsch eingebunden*/
            $result = $processor->transformtoxml($xmlDom);
        } else {
            /* PHP4 XSLT Prozessor, ist auch unter PHP5 erreichbar, nur langsamer */
            /* XSL File auslesen und Content ueberschreiben */
            $filename = "xslt/main.xsl";
            $handle = fopen($filename, "r");
            $xsl_contents = fread($handle, filesize($filename));
            fclose($handle);
            /* :TODO: Anpassen des xsc fuer die Uebergabe des Templatefiles */
            // $xsl = sprintf($xsl_contents, $_SESSION['variables']['template_content']);
            $xsl = $xsl_contents;
            /* Stylesheet uebergeben */
            $processor_arguments = array('/_xml' => $output, '/_xsl' => $xsl);
            $processor = xslt_create();
            xslt_set_encoding($processor, 'ISO-8859-1');
            xslt_set_base($processor, 'file://' . BIN_DIR . 'xslt/');
            /* Transformiert den Output */
            $result = xslt_process($processor, 'arg:/_xml', 'arg:/_xsl', NULL, $processor_arguments);
            if (!$result && xslt_errno($processor) > 0) {
                $result = sprintf("Kann XSLT Dokument nicht umarbeiten [%d]: %s", xslt_errno($processor), xslt_error($processor));
            }
            xslt_free($processor);
        }
        /* Gibt das HTML-Dokument aus */
        echo $result;
    } else {
        header("Content-Type: text/xml");
        echo $output;
    }
}
开发者ID:BackupTheBerlios,项目名称:urulu-svn,代码行数:48,代码来源:output.php


示例5: _output_xsl_generic_transform

/**
 * Transformation générique d'un document XML via XSLT
 * @param string $filename nom du fichier source
 * @param string $filename_source nom du fichier en sortie
 * @param string $stylesheet nom de la feuille XSLT
 * @param array $params paramètres à passer à la feuille XSLT
 * @access private
 * @return boolean vrai quand tout se passe bien
 */
function _output_xsl_generic_transform($filename, $filename_cible, $stylesheet, $params = array())
{
    /* Attention : code hautement toxique, il a fallu aller fouiller
       dans les sources de PHP pour découvrir une grande partie des engins
       nucléaires en jeu ici et rien ne garantit leur stabilité. Désolé pour
       le développement durable, c'est pas trop ça ici. */
    $xh = xslt_create();
    $result = xslt_process($xh, $filename, PATH_INCLUDE . "xslt/" . $stylesheet, $filename_cible, array(), $params);
    if (!$result) {
        $msgerr = 'Erreur XSLT ' . xslt_errno($xh) . ' : ' . xslt_error($xh);
        xslt_free($xh);
        return false;
    } else {
        return true;
    }
}
开发者ID:BackupTheBerlios,项目名称:openweb-cms-svn,代码行数:25,代码来源:OutputFactory.lib.php


示例6: transform

 function transform()
 {
     $args = array('/_xml' => $this->xml, '/_xsl' => $this->xsl);
     $result = xslt_process($this->processor, 'arg:/_xml', 'arg:/_xsl', NULL, $args);
     if (xslt_error($this->processor) != '') {
         echo "class.XSLTransformer41.php<br>";
         echo "xslt_error:" . xslt_error($this->processor) . "<br>";
         echo "result:" . $result . "<br>";
     }
     if (strlen($result) == 0) {
         echo "class.XSLTransformer41.php<br>";
         echo "xslt_error:" . xslt_error($this->processor) . "<br>";
         echo "result:" . $result . "<br>";
     }
     if ($result) {
         $this->setOutput($result);
     } else {
         echo "class.XSLTransformer41.php<br>";
         $err = "<br/>Error: " . xslt_error($this->processor) . "<br/>Errorcode: " . xslt_errno($this->processor);
         $this->setError($err);
     }
 }
开发者ID:swarzesherz,项目名称:PC-Programs,代码行数:22,代码来源:class.XSLTransformer41.php


示例7: atom_to_rss_by_xslt

/**
 * Atom 0.3 を RSS 1.0 に変換する(PHP4, XSLT)
 */
function atom_to_rss_by_xslt($input, $stylesheet, $output)
{
    $xh = xslt_create();
    if (!@xslt_process($xh, $input, $stylesheet, $output)) {
        $errmsg = xslt_errno($xh) . ': ' . xslt_error($xh);
        P2Util::pushInfoHtml('<p>p2 error: XSLT - AtomをRSSに変換できませんでした。(' . $errmsg . ')</p>');
        xslt_free($xh);
        return FALSE;
    }
    xslt_free($xh);
    return FileCtl::file_read_contents($output);
}
开发者ID:unpush,项目名称:p2-php,代码行数:15,代码来源:parser.inc.php


示例8: errno

 /**
  * Returns the current error number.
  * 
  * @access	public
  * @return	string
  * 
  */
 function errno()
 {
     if (PHP_VERSION < '4.1.0') {
         return @xslt_errno();
     } else {
         return @xslt_errno($this->handle);
     }
 }
开发者ID:vojtajina,项目名称:sitellite,代码行数:15,代码来源:XSLT.php


示例9: xslt_create

 /**
  * Use PHP4's xslt extension to do the XSL transformation
  * @param $xml mixed
  * @param $xmlType integer
  * @param $xsl mixed
  * @param $xslType integer
  * @param $resultType integer
  * @return string return type for PHP4 is always string or "false" on error.
  */
 function &_transformPHP4(&$xml, $xmlType, &$xsl, $xslType, $resultType)
 {
     $falseVar = false;
     // PHP4 doesn't support DOM
     if ($xmlType == XSL_TRANSFORMER_DOCTYPE_DOM || $xslType == XSL_TRANSFORMER_DOCTYPE_DOM || $resultType == XSL_TRANSFORMER_DOCTYPE_DOM) {
         return $falseVar;
     }
     // Create the processor
     $processor = xslt_create();
     xslt_set_encoding($processor, XSLT_PROCESSOR_ENCODING);
     // Create arguments for string types (if any)
     $arguments = array();
     if ($xmlType == XSL_TRANSFORMER_DOCTYPE_STRING) {
         $arguments['/_xml'] = $xml;
         $xml = 'arg:/_xml';
     }
     if ($xslType == XSL_TRANSFORMER_DOCTYPE_STRING) {
         $arguments['/_xsl'] = $xsl;
         $xsl = 'arg:/_xsl';
     }
     if (empty($arguments)) {
         $arguments = null;
     }
     // Do the transformation
     $resultXML = xslt_process($processor, $xml, $xsl, null, $arguments, $this->parameters);
     // Error handling
     if (!$resultXML) {
         $this->addError("Cannot process XSLT document [%d]: %s", xslt_errno($processor), xslt_error($processor));
         return $falseVar;
     }
     // DOM is not supported in PHP4 so we can always directly return the string result
     return $resultXML;
 }
开发者ID:anorton,项目名称:pkp-lib,代码行数:42,代码来源:XSLTransformer.inc.php


示例10: transformPHP4

 static function transformPHP4(&$InformationArray)
 {
     // create the XSLT processor^M
     $xh = xslt_create() or die("Could not create XSLT processor");
     // Process the document
     $result = xslt_process($xh, $InformationArray['fileBase'] . $InformationArray['xml_file'], $InformationArray['fileBase'] . $InformationArray['xslt_file'], $InformationArray['fileBase'] . $InformationArray['out_file']);
     if (!$result) {
         // Something croaked. Show the error
         $InformationArray['error'] = "Cannot process XSLT document: " . xslt_errno($xh) . " " . xslt_error($xh);
     }
     // Destroy the XSLT processor
     xslt_free($xh);
 }
开发者ID:rdegennaro,项目名称:Check-It,代码行数:13,代码来源:admin.booklibrary.class.impexp.php


示例11: getLangID

// This has to precede the inclusion of the header file.
$langID = getLangID('it');
//require ('FiaHeader.html');
// $params = array (
//        'contentID' => $_GET['myID'],
//        'expandID'  => $_GET['expand'],
//        'langID' => $langID
// );
$params = array('contentID' => $_GET['myID'], 'expandID' => $_GET['expand'], 'highlight' => $_GET['highlight'], 'langID' => $langID);
require '../header.php';
require 'FiaNavigation.php';
echo '<div id="text">';
// Allocate a new XSLT processor
//$xh = xslt_create();
//xslt_set_encoding ($xh, 'UTF-8');
// Process the document, returning the result into the $result variable
//$result = xslt_process($xh, 'itFiammetta.xml', 'itFiaShowText.xsl', NULL, array(), $params);
// $result = xslt_process($xh, 'itFiammetta.xml', 'itFiaShowText.xsl');
$result = runXSLT($langID . 'Fiammetta.xml', 'FiaShowText.xsl', $params);
if ($result) {
    // echo "<pre>\n";
    echo $result;
    //echo "</pre>\n";
} else {
    echo "Sorry, transformation could not be performed" . xslt_error($xh);
    echo " error code " . xslt_errno($xh);
}
//xslt_free($xh);
echo '</div>';
$last_modified = filemtime($_SERVER["SCRIPT_FILENAME"]);
require '../footer.php';
开发者ID:emylonas,项目名称:Decameron,代码行数:31,代码来源:FiaShowText.php


示例12: implode

// Get the contents of the files, using fopen($fileName, "r");
// Both calls work ok.
if (empty($xslData)) {
    $xslData = implode('', file($xslFile));
}
if (empty($xmlData)) {
    $xmlData = implode('', file($xmlFile));
}
$hXslt = xslt_create();
$arguments = array('/_xml' => $xmlData, '/_xsl' => $xslData);
$result = xslt_process($hXslt, 'arg:/_xml', 'arg:/_xsl', NULL, $arguments);
if ($result) {
    echo $result;
} else {
    echo "There was an error that occurred in the XSL transformation...\n";
    echo "\tError number: " . xslt_errno() . "\n";
    echo "\tError string: " . xslt_error() . "\n";
    exit;
}
xslt_free($hXslt);
?>

<!-- ################################################################## -->

<hr id="UpdateInstructions">

<p>To update the documentation, run the GeneratePhpDocumentation.pl script on your 
copy of <?php 
echo $FileName;
?>
 and pipe the output to <?php 
开发者ID:veritech,项目名称:RESTeasy,代码行数:31,代码来源:documentation.php


示例13: transform

 function transform()
 {
     /* apply replacements on xml and xsl strings after process transformation */
     if ($this->replacements != "") {
         $this->xml = $this->processReplace($this->xml);
         $this->xsl = $this->processReplace($this->xsl);
     }
     //debug("transform xml",$this->xml);
     //debug("transform xsl",$this->xsl);
     $args = array('/_xml' => $this->xml, '/_xsl' => $this->xsl);
     $result = xslt_process($this->processor, 'arg:/_xml', 'arg:/_xsl', NULL, $args);
     //debug("transform res",$result);
     if ($result) {
         $this->setOutput($result);
         return true;
     } else {
         $this->setError(xslt_error($this->processor));
         $this->setErrorCode(xslt_errno($this->processor));
         return false;
     }
 }
开发者ID:Ethennoob,项目名称:Web,代码行数:21,代码来源:xslt-4.1.php


示例14: process

 function process($xml = null, $xsl = null, $param = array())
 {
     if ($xml) {
         $this->_xml = $xml;
     }
     if ($xsl) {
         $this->_xsl = $xsl;
     }
     $xml = trim($xml);
     $xsl = trim($xsl);
     if (!is_array($param)) {
         $param = array();
     }
     if (!_XSLT_AVAILABLE_) {
         return false;
     }
     //dont let process continue if no xsl functionality exists
     //DOMXML Extension
     if (_USING_DOMXML_XSLT_) {
         // Set up error handling
         $ehOLD = ini_set('html_errors', false);
         set_error_handler('trapXSLError');
         $xmldoc = domxml_open_mem($this->_xml, DOMXML_LOAD_PARSING, $xmlErrors);
         $xsldoc = domxml_xslt_stylesheet($this->_xsl);
         if (is_object($xmldoc) && is_object($xsldoc)) {
             $result = $xsldoc->process($xmldoc, $param);
             $result = $xsldoc->result_dump_mem($result);
         }
         // Restore error handling
         ini_set('html_errors', $ehOLD);
         restore_error_handler();
         //Process the errors while opening the XML
         while ($e = @array_shift($xmlErrors)) {
             $this->__error("2", $e['errormessage'], "xml", $e['line']);
         }
         //Use one of the custom error handlers to grab a list of processing errors
         $errors = trapXMLError(null, null, null, null, null, true);
         //Process the rest of the errors
         while ($error = @array_shift($errors)) {
             $this->__error($error['number'], $error['message'], $error['type'], $error['line']);
         }
         unset($xmldoc);
         unset($xsldoc);
         //PHP4/5 XSL Extension
     } else {
         $arguments = array('/_xml' => $this->_xml, '/_xsl' => $this->_xsl);
         $xsltproc = xslt_create();
         ##Make sure a bad document() call doesnt break the site
         if (PHP_VERSION < 5) {
             xslt_setopt($xsltproc, XSLT_SABOPT_IGNORE_DOC_NOT_FOUND);
         }
         $result = @xslt_process($xsltproc, 'arg:/_xml', 'arg:/_xsl', null, $arguments, $param);
         if (PHP_VERSION >= 5) {
             //Use one of the custom error handlers to grab a list of processing errors
             $errors = trapXMLError(null, null, null, null, null, true);
             while ($error = @array_shift($errors)) {
                 $this->__error($error['number'], $error['message'], $error['type'], $error['line']);
             }
         } else {
             if (!$result && xslt_errno($xsltproc) > 0) {
                 $this->__error(xslt_errno($xsltproc), xslt_error($xsltproc));
             }
         }
         xslt_free($xsltproc);
     }
     return $result;
 }
开发者ID:symphonycms,项目名称:symphony-1.7,代码行数:67,代码来源:class.xsltprocess.php


示例15: xslt_create

<?php

/* Allocation du processeur XSLT */
$xh = xslt_create();
$input = 'plan.xml';
$xslt = 'plan.xsl';
$output = 'plan.php';
$template1 = '<?php include(\'template1.php\');?>';
$template2 = '<?php include(\'template2.php\');?>';
/* Traitement du document */
if (xslt_process($xh, 'xml/' . $input, 'xsl/' . $xslt, $output)) {
    echo "Réussi!!!!!";
    $fp = fopen($output, 'r+');
    $contents = file_get_contents($output);
    fputs($fp, $template1 . $contents . $template2);
    fclose($fp);
    readfile('plan.php');
} else {
    echo "Echec : " . xslt_error($xh) . " et ";
    echo " le code d'erreur est " . xslt_errno($xh);
}
xslt_free($xh);
开发者ID:astorije,项目名称:projet-nf29-a10,代码行数:22,代码来源:xslt.php


示例16: errno

 function errno()
 {
     return @xslt_errno();
 }
开发者ID:alexpagnoni,项目名称:xsltwraplib,代码行数:4,代码来源:XSLT.php


示例17: record_to_xml_unimarc

 function record_to_xml_unimarc($record, $style_sheets, $charset)
 {
     global $xslt_base_path;
     global $debug;
     if ($debug) {
         highlight_string(print_r($record, true));
     }
     //		file_put_contents('dublincoreextended1.xml', $record);
     $xh = xslt_create();
     //		echo $charset;
     xslt_set_encoding($xh, $charset);
     $result = $record;
     foreach ($style_sheets as $style_sheet) {
         if ($debug) {
             echo '<h3>' . $style_sheet . '</h3>';
         }
         /* Traitement du document */
         $arguments = array('/_xml' => $result, '/_xsl' => $style_sheet);
         $result = xslt_process($xh, 'arg:/_xml', 'arg:/_xsl', NULL, $arguments);
         if ($debug) {
             highlight_string(print_r($result, true));
         }
         if (!$result) {
             $this->error = true;
             $this->error_message = "Sorry, notice could not be transformed by {$style_sheet} the reason is that " . xslt_error($xh) . " and the error code is " . xslt_errno($xh);
         }
     }
     xslt_free($xh);
     return $result;
 }
开发者ID:hogsim,项目名称:PMB,代码行数:30,代码来源:sru_protocol.class.php


示例18: transform

 function transform()
 {
     $err = "";
     if (getenv("ENV_SOCKET") == "true") {
         $result = $this->socket->transform($this->xsl, $this->xml);
         if (strlen($result) < 3) {
             $args = array('/_xml' => $this->xml, '/_xsl' => $this->xsl);
             $result = xslt_process($this->processor, 'arg:/_xml', 'arg:/_xsl', NULL, $args);
             if ($result) {
                 $this->byJava = 'false';
                 $this->setOutput($result . "<!--transformed by PHP-->");
             } else {
                 $err = "Error: " . xslt_error($this->processor) . " Errorcode: " . xslt_errno($this->processor);
                 $this->setError($err);
             }
         } else {
             $this->byJava = 'true';
             $this->setOutput($result . "<!--transformed by JAVA " . date("h:m:s d-m-Y") . "-->");
         }
     } else {
         $args = array('/_xml' => $this->xml, '/_xsl' => $this->xsl);
         $result = xslt_process($this->processor, 'arg:/_xml', 'arg:/_xsl', NULL, $args);
         if ($result) {
             $this->byJava = 'false';
             $this->setOutput($result . "<!--transformed by PHP " . date("h:m:s d-m-Y") . "-->");
         } else {
             $err = "Error: " . xslt_error($this->processor) . " Errorcode: " . xslt_errno($this->processor);
             $this->setError($err);
         }
     }
     if ($err) {
         var_dump($err);
         var_dump($this->xsl);
         var_dump($this->xml);
     }
 }
开发者ID:robertatakenaka,项目名称:Proceedings,代码行数:36,代码来源:class.XSLTransformer41.php



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP xslt_error函数代码示例发布时间:2022-05-23
下一篇:
PHP xslt_create函数代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap