chregu          Wed Dec 11 09:16:00 2002 EDT

  Added files:                 
    /phpdoc/en/reference/domxml/functions       
                                                DomXsltStylesheet-result-dump-mem.xml 
  Log:
  DomXsltStylesheet->result-dump-mem
  
  

Index: phpdoc/en/reference/domxml/functions/DomXsltStylesheet-result-dump-mem.xml
+++ phpdoc/en/reference/domxml/functions/DomXsltStylesheet-result-dump-mem.xml
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.1 $ -->
  <refentry id="function.DomXsltStylesheet-result-dump-mem">
   <refnamediv>
    <refname>DomXsltStylesheet->result-dump-mem</refname>
    <refpurpose>
             Dumps the result from a XSLT-Transformation back into a string
    </refpurpose>
   </refnamediv>
   <refsect1>
    <title>Description</title>
     <methodsynopsis>
      <type>string</type><methodname>DomXsltStylesheet->result-dump-mem</methodname>
      <methodparam><type>object</type><parameter>DomDocument</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>Outputting the result of a XSLT transformation</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_mem($result);     
?>
]]>
      </programlisting>
     </example>
    </para>
    <para>
     See also  <function>domxml_xslt_result_dump_file</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
-->



-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to