mirror of
https://github.com/php/doc-tr.git
synced 2026-03-24 07:12:18 +01:00
103 lines
2.4 KiB
XML
103 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<!-- $Revision$ -->
|
||
<!-- EN-Revision: f90df97fa5ebfa6e7fcace04976900d6700467cc Maintainer: nilgun Status: ready -->
|
||
<refentry xml:id="function.libxml-set-streams-context" xmlns="http://docbook.org/ns/docbook">
|
||
<refnamediv>
|
||
<refname>libxml_set_streams_context</refname>
|
||
<refpurpose>Yüklenecek veya yazılacak sonraki libxml belgesinin akım
|
||
bağlamını belirler</refpurpose>
|
||
</refnamediv>
|
||
<refsect1 role="description">
|
||
&reftitle.description;
|
||
<methodsynopsis>
|
||
<type>void</type><methodname>libxml_set_streams_context</methodname>
|
||
<methodparam><type>resource</type><parameter>bağlam</parameter></methodparam>
|
||
</methodsynopsis>
|
||
<para>
|
||
Yüklenecek veya yazılacak sonraki libxml belgesinin akım bağlamını belirler.
|
||
</para>
|
||
</refsect1>
|
||
|
||
<refsect1 role="parameters">
|
||
&reftitle.parameters;
|
||
<para>
|
||
<variablelist>
|
||
<varlistentry>
|
||
<term><parameter>bağlam</parameter></term>
|
||
<listitem>
|
||
<para>
|
||
<function>stream_context_create</function> ile oluşturulan bir akım
|
||
bağlamı özkaynağı.
|
||
</para>
|
||
</listitem>
|
||
</varlistentry>
|
||
</variablelist>
|
||
</para>
|
||
</refsect1>
|
||
|
||
<refsect1 role="returnvalues">
|
||
&reftitle.returnvalues;
|
||
<para>
|
||
&return.void;
|
||
</para>
|
||
</refsect1>
|
||
|
||
<refsect1 role="examples">
|
||
&reftitle.examples;
|
||
<para>
|
||
<example>
|
||
<title>- <function>libxml_set_streams_context</function> örneği</title>
|
||
<programlisting role="php">
|
||
<![CDATA[
|
||
<?php
|
||
|
||
$opts = array(
|
||
'http' => array(
|
||
'user_agent' => 'PHP libxml agent',
|
||
)
|
||
);
|
||
|
||
$context = stream_context_create($opts);
|
||
libxml_set_streams_context($context);
|
||
|
||
// Dosyayı HTTP üzerinden isteyelim
|
||
$doc = DOMDocument::load('http://www.example.com/file.xml');
|
||
|
||
?>
|
||
]]>
|
||
</programlisting>
|
||
</example>
|
||
</para>
|
||
</refsect1>
|
||
|
||
<refsect1 role="seealso">
|
||
&reftitle.seealso;
|
||
<para>
|
||
<simplelist>
|
||
<member><function>stream_context_create</function></member>
|
||
</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
|
||
sgml-default-dtd-file:"~/.phpdoc/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
|
||
-->
|