2005-02-14 18:01:02 +00:00
|
|
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
2009-07-11 07:50:41 +00:00
|
|
|
<!-- $Revision$ -->
|
2007-06-20 22:25:43 +00:00
|
|
|
<refentry xml:id="function.libxml-set-streams-context" xmlns="http://docbook.org/ns/docbook">
|
2005-02-14 18:01:02 +00:00
|
|
|
<refnamediv>
|
|
|
|
<refname>libxml_set_streams_context</refname>
|
|
|
|
<refpurpose>
|
|
|
|
Set the streams context for the next libxml document load or write
|
|
|
|
</refpurpose>
|
|
|
|
</refnamediv>
|
|
|
|
<refsect1 role="description">
|
|
|
|
&reftitle.description;
|
|
|
|
<methodsynopsis>
|
|
|
|
<type>void</type><methodname>libxml_set_streams_context</methodname>
|
|
|
|
<methodparam><type>resource</type><parameter>streams_context</parameter></methodparam>
|
|
|
|
</methodsynopsis>
|
2005-02-15 17:20:43 +00:00
|
|
|
<para>
|
|
|
|
Sets the streams context for the next libxml document load or write.
|
|
|
|
</para>
|
2005-02-14 18:01:02 +00:00
|
|
|
</refsect1>
|
2005-02-15 17:20:43 +00:00
|
|
|
|
2005-02-14 18:01:02 +00:00
|
|
|
<refsect1 role="parameters">
|
|
|
|
&reftitle.parameters;
|
|
|
|
<para>
|
|
|
|
<variablelist>
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>streams_context</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
2005-02-15 17:20:43 +00:00
|
|
|
The stream context resource (created with
|
|
|
|
<function>stream_context_create</function>)
|
2005-02-14 18:01:02 +00:00
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
2005-02-15 17:20:43 +00:00
|
|
|
|
2005-02-14 18:01:02 +00:00
|
|
|
<refsect1 role="returnvalues">
|
|
|
|
&reftitle.returnvalues;
|
|
|
|
<para>
|
2005-02-15 17:20:43 +00:00
|
|
|
&return.void;
|
2005-02-14 18:01:02 +00:00
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="examples">
|
|
|
|
&reftitle.examples;
|
|
|
|
<para>
|
|
|
|
<example>
|
2005-02-15 17:20:43 +00:00
|
|
|
<title>A <function>libxml_set_streams_context</function> example</title>
|
2005-02-14 18:01:02 +00:00
|
|
|
<programlisting role="php">
|
|
|
|
<![CDATA[
|
|
|
|
<?php
|
2005-02-15 17:20:43 +00:00
|
|
|
|
|
|
|
$opts = array(
|
|
|
|
'http' => array(
|
|
|
|
'user_agent' => 'PHP libxml agent',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$context = stream_context_create($opts);
|
|
|
|
libxml_set_streams_context($context);
|
|
|
|
|
|
|
|
// request a file through HTTP
|
|
|
|
$doc = DOMDocument::load('http://www.example.com/file.xml');
|
|
|
|
|
2005-02-14 18:01:02 +00:00
|
|
|
?>
|
|
|
|
]]>
|
|
|
|
</programlisting>
|
|
|
|
</example>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="seealso">
|
|
|
|
&reftitle.seealso;
|
|
|
|
<para>
|
|
|
|
<simplelist>
|
2005-02-15 17:20:43 +00:00
|
|
|
<member><function>stream_context_create</function></member>
|
2005-02-14 18:01:02 +00:00
|
|
|
</simplelist>
|
|
|
|
</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
|
2009-09-25 07:04:39 +00:00
|
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
2005-02-14 18:01:02 +00:00
|
|
|
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
|
|
|
|
-->
|