leszek          Tue May 14 18:38:50 2002 EDT

  Added files:                 
    /phpdoc-pl/reference/ftp/functions  ftp-close.xml ftp-exec.xml 
                                        ftp-get-option.xml 
                                        ftp-set-option.xml 
  Log:
  Updated ftp reference to newest version
  

Index: phpdoc-pl/reference/ftp/functions/ftp-close.xml
+++ phpdoc-pl/reference/ftp/functions/ftp-close.xml
<?xml version="1.0" encoding="iso-8859-2"?>
<!-- EN-Revision: 1.2 Maintainer: leszek Status: ready -->
<!-- $Revision: 1.1 $ -->
  <refentry id="function.ftp-close">
   <refnamediv>
    <refname>ftp_close</refname>
    <refpurpose>Zamyka po��czenie FTP</refpurpose>
   </refnamediv>
   <refsect1>
    <title>Opis</title>
     <methodsynopsis>
      <type>void</type><methodname>ftp_close</methodname>
      
<methodparam><type>resource</type><parameter>strumie�_ftp</parameter></methodparam>
     </methodsynopsis>
    <note>
     <para>
      Funkcja ta dost�pna jest tylko w wersji CVS.
     </para>
    </note>
    <para>
     <function>ftp_close</function> zamyka <parameter>strumie�_ftp</parameter>
     i zwalnia zas�b. Nie mo�na ponownie u�ywa� tego zasobu, lecz trzeba go
     ponownie otworzy� korzystaj�c z funkcji <function>ftp_connect</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
-->

Index: phpdoc-pl/reference/ftp/functions/ftp-exec.xml
+++ phpdoc-pl/reference/ftp/functions/ftp-exec.xml
<?xml version="1.0" encoding="iso-8859-2"?>
<!-- EN-Revision: 1.3 Maintainer: leszek Status: ready -->
<!-- $Revision: 1.1 $ -->
  <refentry id='function.ftp-exec'>
   <refnamediv>
    <refname>ftp_exec</refname>
    <refpurpose>��daj wywo�ania programu na serwerze FTP</refpurpose>
   </refnamediv>
   <refsect1>
    <title>Opis</title>
     <methodsynopsis>
      <type>bool</type><methodname>ftp_exec</methodname>
      
<methodparam><type>resource</type><parameter>strumie�_ftp</parameter></methodparam>
      <methodparam><type>string</type><parameter>polecenie</parameter></methodparam>
     </methodsynopsis>
     <para>
      Wysy�a ��danie SITE EXEC <parameter>polecenie</parameter> do serwera
      FTP. Funkcja zwraca &false; je�li ��danie si� nie powiod�o lub wyj�cie
      polecenia w przeciwnym przypadku.
    </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
-->

Index: phpdoc-pl/reference/ftp/functions/ftp-get-option.xml
+++ phpdoc-pl/reference/ftp/functions/ftp-get-option.xml
<?xml version="1.0" encoding="iso-8859-2"?>
<!-- EN-Revision: 1.3 Maintainer: leszek Status: ready -->
<!-- $Revision: 1.1 $ -->
  <refentry id='function.ftp-get-option'>
   <refnamediv>
    <refname>ftp_get_option</refname>
    <refpurpose>Pobiera r�ne opcje startowe strumienia FTP</refpurpose>
   </refnamediv>
   <refsect1>
    <title>Opis</title>
     <methodsynopsis>
      <type>mixed</type><methodname>ftp_get_option</methodname>
      <methodparam><type>resource</type><parameter>ftp_stream</parameter></methodparam>
      <methodparam><type>int</type><parameter>parametr</parameter></methodparam>
     </methodsynopsis>
    <note>
     <para>
      Funkcja ta dost�pna jest tylko w wersji CVS.
     </para>
    </note>
    <para>
     Funkcja zwraca odpowiedni� warto�� w przypadku powodzenia lub &false;
     je�li podany <parameter>parametr</parameter> nie jest obs�ugiwany. W tym
     drugim przypadku wy�wietlany jest komunikat z ostrze�eniem.
    </para>
    <para>
     Funkcja ta zwraca warto�� ��danego <parameter>parametru</parameter> z
     podanego <parameter>strumienia_ftp</parameter>. W chwili obecnej
     nast�puj�ce parametry s� obs�ugiwane:
     <table>
      <title>Lista opcji startowych FTP</title>
      <tgroup cols="2">
       <tbody>
        <row>
         <entry>FTP_TIMEOUT_SEC</entry>
         <entry>Zwraca bi꿱cy limit czasu na operacje sieciowe.</entry>
        </row>
       </tbody>
      </tgroup>
     </table>
    </para>
    <para>
     <example>
      <title>Przyk�ad u�ycia <function>ftp_get_option</function></title>
      <programlisting role="php">
<![CDATA[
// Pobie� limit czasu z podanego strumienia FTP
$timeout = ftp_get_option($conn_id, FTP_TIMEOUT_SEC);
]]>
      </programlisting>
     </example>
    </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
-->

Index: phpdoc-pl/reference/ftp/functions/ftp-set-option.xml
+++ phpdoc-pl/reference/ftp/functions/ftp-set-option.xml
<?xml version="1.0" encoding="iso-8859-2"?>
<!-- EN-Revision: 1.3 Maintainer: leszek Status: ready -->
<!-- $Revision: 1.1 $ -->
  <refentry id='function.ftp-set-option'>
   <refnamediv>
    <refname>ftp_set_option</refname>
    <refpurpose>Ustaw r�ne opcje startowe FTP</refpurpose>
   </refnamediv>
   <refsect1>
    <title>Opis</title>
     <methodsynopsis>
      <type>bool</type><methodname>ftp_set_option</methodname>
      
<methodparam><type>resource</type><parameter>strumie�_ftp</parameter></methodparam>
      <methodparam><type>int</type><parameter>parametr</parameter></methodparam>
      <methodparam><type>mixed</type><parameter>warto��</parameter></methodparam>
     </methodsynopsis>
    <note>
     <para>
      Funkcja ta jest dost�pna tylko w wersji CVS.
     </para>
    </note>
    <para>
     Zwraca &true; je�li parametr m�g� zosta� ustawiony, &false; je�li nie
     m�g�. Je�li <parameter>parametr</parameter> nie jest obs�ugiwany lub
     przekazana <parameter>warto��</parameter> nie jest warto�ci� oczekiwan�
     dla danego <parameter>parametru</parameter>, wy�wietlony zostanie
     komunikat z ostrze�eniem.
    </para>
    <para>
     Funkcja ta kontroluje r�ne parametry czasu wykonania dla danego
     strumienia FTP. <parameter>warto��</parameter> zale�y od tego, kt�ry
     <parameter>parametr</parameter> ma zosta� zmieniony. W chwili obecnej
     nast�puj�ce parametry s� obs�ugiwane:
     <table>
      <title>Obs�ugiwane parametry startowe FTP</title>
      <tgroup cols="2">
       <tbody>
        <row>
         <entry>FTP_TIMEOUT_SEC</entry>
         <entry>Zmienia limit czasu w sekundach u�ywane we wszystkich
          funkcjach sieciowych. Parametr <parameter>warto��</parameter> musi
          by� typu iny i by� wi�kszy ni� 0. Domy�ln� warto�ci� jest 90
          sekund.</entry>
        </row>
       </tbody>
      </tgroup>
     </table>
    </para>
    <para>
     <example>
      <title>Przyk�ad u�ycia <function>ftp_set_option</function></title>
      <programlisting role="php">
<![CDATA[
// Zmniejsz limit czasu po��cze� sieciowych na 10 sekund
ftp_set_option($conn_id, FTP_TIMEOUT_SEC, 10);
]]>
      </programlisting>
     </example>
    </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
-->

Reply via email to