mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
- Fix for bug #17355
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@83229 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
c7b52ca51b
commit
3de5d97b9f
1 changed files with 12 additions and 11 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.2 $ -->
|
||||
<!-- $Revision: 1.3 $ -->
|
||||
<!-- splitted from ./en/functions/xslt.xml, last change in rev 1.3 -->
|
||||
<refentry id="function.xslt-process">
|
||||
<refnamediv>
|
||||
|
@ -18,21 +18,22 @@
|
|||
<methodparam choice="opt"><type>array</type><parameter>parameters</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
The xslt_process() function is the crux of the new XSLT extension. It
|
||||
allows you to perform an XSLT transformation using almost any type of
|
||||
input source. This is accomplished through the use of argument
|
||||
buffers -- a concept taken from the Sablotron XSLT processor
|
||||
The <function>xslt_process</function> function is the crux of the new
|
||||
XSLT extension. It allows you to perform an XSLT transformation using
|
||||
almost any type of input source. This is accomplished through the use of
|
||||
argument buffers -- a concept taken from the Sablotron XSLT processor
|
||||
(currently the only XSLT processor this extension supports).
|
||||
</para>
|
||||
<para>
|
||||
The simplest type of transformation with the <function>xslt_process()</function>
|
||||
function is the transformation of an XML file with an XSLT file, placing the
|
||||
result in a third file containing the new XML (or HTML) document.
|
||||
Doing this with sablotron is really quite easy...
|
||||
The simplest type of transformation with the
|
||||
<function>xslt_process</function> function is the transformation of an
|
||||
XML file with an XSLT file, placing the result in a third file containing
|
||||
the new XML (or HTML) document. Doing this with sablotron is really
|
||||
quite easy...
|
||||
</para>
|
||||
<example>
|
||||
<title>Using the <function>xslt_process</function> to transform an XML file and a XSL file
|
||||
to a new XML file</title>
|
||||
<title>Using the <function>xslt_process</function> to transform an XML
|
||||
file and a XSL file to a new XML file</title>
|
||||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
<?php
|
||||
|
|
Loading…
Reference in a new issue