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


PHP xslt_create函数代码示例

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


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

示例1: smarty_modifier_xslt

function smarty_modifier_xslt($xml, $xslfile = '')
{
    $xh = xslt_create();
    $arguments = array('/_xml' => $xml);
    return xslt_process($xh, 'arg:/_xml', $xslfile, NULL, $arguments);
    xslt_free($xh);
}
开发者ID:BackupTheBerlios,项目名称:oos-svn,代码行数:7,代码来源:modifier.xslt.php

示例2: transform

 function transform()
 {
     $xslhandler = xslt_create();
     $this->outputXML = xslt_process($xslhandler, $this->{$inputXML}, $this->{$xslTransform});
     xslt_free($xslhandler);
     return $this->outputXML;
 }
开发者ID:armic,项目名称:erpts,代码行数:7,代码来源:clibPDFWriter.php

示例3: upload_article_handler

function upload_article_handler(&$request, &$session, &$files) {
	$publication = Input::Get('Pub', 'int', 0);
	$issue = Input::Get('Issue', 'int', 0);
	$section = Input::Get('Section', 'int', 0);
	$language = Input::Get('Language', 'int', 0);
	$sLanguage = Input::Get('sLanguage', 'int', 0);
	$articleNumber = Input::Get('Article', 'int', 0);

	if (!Input::IsValid()) {
		echo "Input Error: Missing input";
		return;
	}

	// Unzip the sxw file to get the content.
	$zip = zip_open($files["filename"]["tmp_name"]);
	if ($zip) {
		$xml = null;
		while ($zip_entry = zip_read($zip)) {
			if (zip_entry_name($zip_entry) == "content.xml") {
		       	if (zip_entry_open($zip, $zip_entry, "r")) {
		           	$xml = zip_entry_read($zip_entry, zip_entry_filesize($zip_entry));
			        zip_entry_close($zip_entry);
		       	}
			}
		}
		zip_close($zip);

		if (!is_null($xml)) {
			// Write the XML to a file because the XSLT functions
			// require it to be in a file in order to be processed.
			$tmpXmlFilename = tempnam("/tmp", "ArticleImportXml");
			$tmpXmlFile = fopen($tmpXmlFilename, "w");
			fwrite($tmpXmlFile, $xml);
			fclose($tmpXmlFile);

			// Transform the OpenOffice document to DocBook format.
			$xsltProcessor = xslt_create();
			$docbookXml = xslt_process($xsltProcessor,
									   $tmpXmlFilename,
									   "sxwToDocbook.xsl");
			unlink($tmpXmlFilename);

			// Parse the docbook to get the data.
			$docBookParser = new DocBookParser();
			$docBookParser->parseString($docbookXml, true);

			$article = new Article($articleNumber, $language);
			$article->setTitle($docBookParser->getTitle());
			$article->setIntro($docBookParser->getIntro());
			$article->setBody($docBookParser->getBody());

			// Go back to the "Edit Article" page.
			header("Location: /$ADMIN/articles/edit.php?Pub=$publication&Issue=$issue&Section=$section&Article=$articleNumber&Language=$language&sLanguage=$sLanguage");
		} // if (!is_null($xml))
	} // if ($zip)

	// Some sort of error occurred - show the upload page again.
	include("index.php");
} // fn upload_article_handler
开发者ID:nistormihai,项目名称:Newscoop,代码行数:59,代码来源:CommandProcessor.php

示例4: INCLUDE_xml_xsl

function INCLUDE_xml_xsl($xmlContent, $xslFile)
{
    $p = xslt_create(void);
    $args = array('/_xml' => $xmlContent);
    $result = xslt_process($p, 'arg:/_xml', $xslFile, NULL, $args);
    xslt_free($p);
    return utf8_decode($result);
}
开发者ID:rgevaert,项目名称:ABCD,代码行数:8,代码来源:include411.php

示例5: front_xhtml_output

function front_xhtml_output()
{
    $buf = ob_get_contents();
    $xh = xslt_create();
    $args = array('/_xml' => '<' . '?xml version="1.0" encoding="utf-8"?' . '>' . $buf);
    ob_end_clean();
    $params = array('path_site_root' => PATH_SITE_ROOT);
    $result = xslt_process($xh, 'arg:/_xml', PATH_INC_FRONTEND . 'front_xhtml.xsl', null, $args, $params);
    eval('?>' . $result);
}
开发者ID:BackupTheBerlios,项目名称:openweb-cms-svn,代码行数:10,代码来源:front_xhtml.inc.php

示例6: 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

示例7: apply_transform

 function apply_transform($title, $content)
 {
     if (!$this->xslt_extension_availible) {
         return 'The xslt_transformation used, needs the "xslt" extension of php !!!';
     }
     $xh = xslt_create();
     $xsltarguments = array('/_xml' => $content);
     $result = xslt_process($xh, 'arg:/_xml', $this->xsltfile, NULL, $xsltarguments, $this->xsltparameters);
     xslt_free($xh);
     return $result;
 }
开发者ID:BackupTheBerlios,项目名称:milaninegw-svn,代码行数:11,代码来源:class.xslt_transform.inc.php

示例8: xml_select

function xml_select($xpath, $file)
{
    $xsl = "<?xml version='1.0'?>\n" . "<xsl:transform version='1.0' " . "xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>\n" . "<xsl:template match='/'>\n" . "<resultset>\n" . "<xsl:apply-templates select='{$xpath}'/>\n" . "</resultset>\n" . "</xsl:template>\n" . "<xsl:template match='node()|@*'>\n" . "<xsl:copy>\n" . "<xsl:apply-templates select='node()|@*'/>\n" . "</xsl:copy>\n" . "</xsl:template>\n" . "</xsl:transform>\n";
    $e = xslt_create();
    $o = xslt_process($e, $file, 'arg:/xsl', NULL, array('xsl' => $xsl), array('path' => $xpath));
    if (!$o) {
        print_lined($xsl);
    }
    xslt_free($e);
    return $o;
}
开发者ID:nbtscommunity,项目名称:phpfnlib,代码行数:11,代码来源:select.php

示例9: XSLTransformer

 function XSLTransformer()
 {
     $defFile = parse_ini_file(dirname(__FILE__) . "/scielo.def", true);
     $this->processor = xslt_create();
     $this->host = $_SERVER["SERVER_ADDR"];
     $this->port = $defFile["SOCKET"]["SOCK_PORT"];
     $this->socket = new XSLTransformerSocket($this->host, $this->port);
     if (!$this->socket) {
         die("socket creation error!");
     }
 }
开发者ID:robertatakenaka,项目名称:Proceedings,代码行数:11,代码来源:class.XSLTransformer41.php

示例10: XSLTransformer

 function XSLTransformer()
 {
     $defFile = new DefFile("scielo.def");
     $this->processor = xslt_create();
     $this->host = $_SERVER["SERVER_ADDR"];
     $this->port = $defFile->getKeyValue("SOCK_PORT");
     $this->socket = new XSLTransformerSocket($this->host, $this->port);
     if (!$this->socket) {
         die("socket creation error!");
     }
 }
开发者ID:robertatakenaka,项目名称:Proceedings,代码行数:11,代码来源:class.XSLTransformer40.php

示例11: INCLUDE_xml_xsl

function INCLUDE_xml_xsl($xmlContent, $xslFile)
{
    $fp = fopen($xslFile, "r");
    if ($fp) {
        $xsl = fread($fp, "500000");
        fclose($fp);
    }
    $p = xslt_create(void);
    $args = array("/_stylesheet", $xsl, "/_xmlinput", $xmlContent, "/_output", 0, 0);
    $runFlag = xslt_run($p, "arg:/_stylesheet", "arg:/_xmlinput", "arg:/_output", 0, $args);
    $result = xslt_fetch_result($p, "arg:/_output");
    xslt_free($p);
    return utf8_decode($result);
}
开发者ID:rgevaert,项目名称:ABCD,代码行数:14,代码来源:include406.php

示例12: 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

示例13: _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

示例14: process

 function process()
 {
     if (parent::isError($process = parent::process())) {
         return $process;
     }
     // Prepare the params for passing to the stylesheet
     $params = array('filter' => $this->filter, 'browser' => $this->browser, 'comment' => $this->comment);
     $xh = xslt_create();
     $result = xslt_process($xh, $this->CSSMLDoc, $this->stylesheetDoc, null, $this->arguments, $params);
     if ($this->output != 'STDOUT') {
         $fp = fopen($this->output, 'w');
         fwrite($fp, $result);
         fclose($fp);
         $result = true;
     }
     return $result;
 }
开发者ID:Esleelkartea,项目名称:kz-adeada-talleres-electricos-,代码行数:17,代码来源:xslt.php

示例15: blackboard_convert

function blackboard_convert($dir)
{
    global $CFG, $OUTPUT;
    throw new coding_exception('bb_convert was not converted to new file api yet, sorry');
    // Check for a Blackboard manifest file
    if (is_readable($dir . '/imsmanifest.xml') && !is_readable($dir . '/moodle.xml')) {
        if (!function_exists('xslt_create')) {
            // XSLT MUST be installed for this to work
            echo $OUTPUT->notification('You need the XSLT library installed in PHP to open this Blackboard file');
            return false;
        }
        //Select the proper XSL file
        $xslt_file = choose_bb_xsl($dir . '/imsmanifest.xml');
        //TODO: Use the get_string function for this
        echo "<li>Converting Blackboard export</li>";
        // The XSL file must be in the same directory as the Blackboard files when it is processed
        if (!copy($CFG->dirroot . "/backup/bb/{$xslt_file}", "{$dir}/{$xslt_file}")) {
            echo $OUTPUT->notification('Could not copy the XSLT file to ' . "{$dir}/{$xslt_file}");
            return false;
        }
        // Change to that directory
        $startdir = getcwd();
        chdir($dir);
        // Process the Blackboard XML files with the chosen XSL file.
        // The imsmanifest contains all the XML files and their relationships.
        // The XSL processor will open them as needed.
        $xsltproc = xslt_create();
        if (!xslt_process($xsltproc, 'imsmanifest.xml', "{$dir}/{$xslt_file}", "{$dir}/moodle.xml")) {
            echo $OUTPUT->notification('Failed writing xml file');
            chdir($startdir);
            return false;
        }
        // Copy the Blackboard course files into the moodle course_files structure
        $subdirs = get_subdirs($dir . "/");
        mkdir("{$dir}/course_files", $CFG->directorypermissions);
        foreach ($subdirs as $subdir) {
            rename($subdir, "course_files/{$subdir}");
            rename_hexfiles($subdir);
        }
        chdir($startdir);
        // Blackboard export successfully converted
        return true;
    }
    // This is not a Blackboard export
    return true;
}
开发者ID:vuchannguyen,项目名称:web,代码行数:46,代码来源:restore_bb.php


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