svn: /phpdoc/kr/trunk/reference/curl/functions/ curl-close.xml

[email protected] (Yu Ilho)
Newsgroups php.doc.kr
Message-ID <[email protected]>
acidd15                                  Sun, 19 Oct 2014 14:38:53 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=335111

Log:
leave reviewed yes

Changed paths:
    A   phpdoc/kr/trunk/reference/curl/functions/curl-close.xml

Added: phpdoc/kr/trunk/reference/curl/functions/curl-close.xml
===================================================================
--- phpdoc/kr/trunk/reference/curl/functions/curl-close.xml	                        (rev 0)
+++ phpdoc/kr/trunk/reference/curl/functions/curl-close.xml	2014-10-19 14:38:53 UTC (rev 335111)
@@ -0,0 +1,97 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- $Revision$ -->
+<!-- EN-Revision: 297028 Maintainer: SuHun Han Status: ready -->
+<!-- Reviewed: yes Maintainer: acidd15 -->
+
+<refentry xml:id="function.curl-close" xmlns="http://docbook.org/ns/docbook">
+ <refnamediv>
+  <refname>curl_close</refname>
+  <refpurpose>cURL 세션을 닫습니다.</refpurpose>
+ </refnamediv>
+
+ <refsect1 role="description">
+  &reftitle.description;
+  <methodsynopsis>
+   <type>void</type><methodname>curl_close</methodname>
+   <methodparam><type>resource</type><parameter>ch</parameter></methodparam>
+  </methodsynopsis>
+  <para>
+   cURL 세션을 닫고 모든 리소스를 해제합니다.  cURL 핸들,
+   <parameter>ch</parameter>은 제거됩니다.
+  </para>
+ </refsect1>
+
+ <refsect1 role="parameters">
+  &reftitle.parameters;
+  <para>
+   <variablelist>
+    &curl.ch.description;
+   </variablelist>
+  </para>
+ </refsect1>
+
+ <refsect1 role="returnvalues">
+  &reftitle.returnvalues;
+  <para>
+   &return.void;
+  </para>
+ </refsect1>
+
+ <refsect1 role="examples">
+  &reftitle.examples;
+  <para>
+   <example>
+    <title>새로운 cURL 세션을 초기화하여 웹 페이지를 가져오는 방법</title>
+    <programlisting role="php">
+<![CDATA[
+<?php
+// 새로운 cURL 핸들을 생성합니다.
+$ch = curl_init();
+
+// URL 과 다른 옵션들을 설정합니다.
+curl_setopt($ch, CURLOPT_URL, "http://www.example.com/");
+curl_setopt($ch, CURLOPT_HEADER, 0);
+
+// URL 으로부터 데이터를 가져옵니다.
+curl_exec($ch);
+
+// cURL 세션을 닫고 리소스를 제거합니다.
+curl_close($ch);
+?>
+]]>
+    </programlisting>
+   </example>
+  </para>
+ </refsect1>
+
+ <refsect1 role="seealso">
+  &reftitle.seealso;
+  <para>
+   <simplelist>
+    <member><function>curl_init</function></member>
+    <member><function>curl_multi_close</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
+-->


Property changes on: phpdoc/kr/trunk/reference/curl/functions/curl-close.xml
___________________________________________________________________
Added: svn:eol-style
   + native
Added: svn:keywords
   + Id Rev Revision Date LastChangedDate LastChangedRevision Author LastChangedBy HeadURL URL
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.