mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-22 11:58:55 +00:00

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@165083 c90b9560-bf6c-de11-be94-00142212c4b1
101 lines
2.8 KiB
XML
Executable file
101 lines
2.8 KiB
XML
Executable file
<?xml version='1.0' encoding='iso-8859-1'?>
|
|
<!-- $Revision: 1.4 $ -->
|
|
<refentry id="function.xslt-setopt">
|
|
<refnamediv>
|
|
<refname>xslt_setopt</refname>
|
|
<refpurpose>
|
|
Set options on a given xsl processor
|
|
</refpurpose>
|
|
</refnamediv>
|
|
<refsect1>
|
|
<title>Description</title>
|
|
<methodsynopsis>
|
|
<type>int</type><methodname>xslt_setopt</methodname>
|
|
<methodparam><type>resource</type><parameter>processor</parameter></methodparam>
|
|
<methodparam><type>int</type><parameter>newmask</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
<function>xslt_setopt</function> sets the options specified by
|
|
<parameter>newmask</parameter> on the given <parameter>processor</parameter>.
|
|
</para>
|
|
<para>
|
|
<parameter>newmask</parameter> is a bitmask constructed with the following
|
|
constants:
|
|
<itemizedlist>
|
|
<listitem>
|
|
<para>
|
|
<constant>XSLT_SABOPT_PARSE_PUBLIC_ENTITIES</constant> - Tell the processor
|
|
to parse public entities. By default this has been turned off.
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
<constant>XSLT_SABOPT_DISABLE_ADDING_META</constant> - Do not add the meta
|
|
tag "Content-Type" for HTML output. The default is set during the compilation
|
|
of the processor.
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
<constant>XSLT_SABOPT_DISABLE_STRIPPING</constant> - Suppress the whitespace
|
|
stripping (on data files only).
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
<constant>XSLT_SABOPT_IGNORE_DOC_NOT_FOUND</constant> - Consider unresolved
|
|
documents (the document() function) non-lethal.
|
|
</para>
|
|
</listitem>
|
|
</itemizedlist>
|
|
</para>
|
|
</refsect1>
|
|
<refsect1>
|
|
&reftitle.examples;
|
|
<example>
|
|
<title><function>xslt_setopt</function> Example</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
|
|
$xh = xslt_create();
|
|
|
|
// Tell Sablotron to process public entities
|
|
xslt_setopt($xh, XSLT_SABOPT_PARSE_PUBLIC_ENTITIES);
|
|
|
|
// Let's also ask him to suppress whitespace stripping
|
|
xslt_setopt($xh, xslt_getopt($xh) | XSLT_SABOPT_PARSE_PUBLIC_ENTITIES);
|
|
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
</refsect1>
|
|
<refsect1>
|
|
&reftitle.seealso;
|
|
<para>
|
|
<function>xslt_getopt</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
|
|
-->
|