mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
DomXsltStylesheet->result_dump_file
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@107613 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
0d90b68f88
commit
c89e1eb01b
1 changed files with 74 additions and 0 deletions
|
@ -0,0 +1,74 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.1 $ -->
|
||||
<refentry id="function.DomXsltStylesheet-result-dump-file">
|
||||
<refnamediv>
|
||||
<refname>DomXsltStylesheet->result_dump_file</refname>
|
||||
<refpurpose>
|
||||
Dumps the result from a XSLT-Transformation into a file
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<methodsynopsis>
|
||||
<type>string</type><methodname>DomXsltStylesheet->result_dump_file</methodname>
|
||||
<methodparam><type>object</type><parameter>DomDocument</parameter></methodparam>
|
||||
<methodparam><type>string</type><parameter>filename</parameter></methodparam>
|
||||
|
||||
</methodsynopsis>
|
||||
&warn.experimental.func;
|
||||
|
||||
<para>
|
||||
This function is only available since PHP 4.3
|
||||
</para>
|
||||
<para>
|
||||
Since DomXsltStylesheet->process() always returns a well-formed XML DomDocument,
|
||||
no matter what output method was declared in <![CDATA[<xsl:output>]]> and similar
|
||||
attributes/elements, it's of not much use, if you want to output HTML 4 or text data.
|
||||
This function on the contrary honors <![CDATA[<xsl:output method="html|text">]]>
|
||||
and other output control directives. See the example for instruction of how to use it.
|
||||
</para>
|
||||
<para>
|
||||
<example>
|
||||
<title>Saving the result of a XSLT transformation in a file</title>
|
||||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
<?php
|
||||
$filename = "stylesheet.xsl";
|
||||
$xmldoc = domxml_open_file("data.xml");
|
||||
$xsldoc = domxml_xslt_stylesheet_file($filename);
|
||||
$result = $xsldoc->process($xmldoc);
|
||||
print $xsldoc->result_dump_file($result,"filename");
|
||||
?>
|
||||
]]>
|
||||
</programlisting>
|
||||
</example>
|
||||
</para>
|
||||
<para>
|
||||
See also <function>domxml_xslt_result_dump_mem</function>,
|
||||
<function>domxml_xslt_process</function>
|
||||
</para>
|
||||
|
||||
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<!-- Keep this comment at the end of the file
|
||||
Local variables:
|
||||
mode: sgml
|
||||
sgml-omittag:t
|
||||
sgml-shorttag:t
|
||||
sgml-minimize-attributes:nil
|
||||
sgml-always-quote-attributes:t
|
||||
sgml-indent-step:1
|
||||
sgml-indent-data:t
|
||||
indent-tabs-mode:nil
|
||||
sgml-parent-document:nil
|
||||
sgml-default-dtd-file:"../../../../manual.ced"
|
||||
sgml-exposed-tags:nil
|
||||
sgml-local-catalogs:nil
|
||||
sgml-local-ecat-files:nil
|
||||
End:
|
||||
vim600: syn=xml fen fdm=syntax fdl=2 si
|
||||
vim: et tw=78 syn=sgml
|
||||
vi: ts=1 sw=1
|
||||
-->
|
Loading…
Reference in a new issue