cvs: phpdoc-nl /reference/ftp/functions ftp-chmod.xml ftp-raw.xml
[email protected] ("Patric Stout")
| Newsgroups | php.doc.nl |
|---|---|
| Message-ID | <cvstruelight1046533482@cvsserver> |
truelight Sat Mar 1 10:44:42 2003 EDT
Added files:
/phpdoc-nl/reference/ftp/functions ftp-raw.xml ftp-chmod.xml
Log:
Sync with EN (2 new functions)
Index: phpdoc-nl/reference/ftp/functions/ftp-raw.xml
+++ phpdoc-nl/reference/ftp/functions/ftp-raw.xml
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- EN-Revision: 1.1 Maintainer: truelight Status: ready -->
<refentry id="function.ftp-raw">
<refnamediv>
<refname>ftp_raw</refname>
<refpurpose>Stuurt een willekeurig commando naar een FTP server</refpurpose>
</refnamediv>
<refsect1>
<title>Beschrijving</title>
<methodsynopsis>
<type>array</type><methodname>ftp_raw</methodname>
<methodparam><type>resource</type><parameter>ftp_stream</parameter></methodparam>
<methodparam><type>string</type><parameter>command</parameter></methodparam>
</methodsynopsis>
<para>
Staart een willekeurig <parameter>command</parameter> naar de FTP server.
Geeft het antwoord van de server terug als een array van strings.
Het antwoord wordt niet verwerkt, noch beslist <function>ftp_raw</function>
of het commando succesvol was.
</para>
<para>
<example>
<title>Hoe je <function>ftp_raw</function> kan gebruiken om handmatig op een FTP server in te loggen.</title>
<programlisting role="php">
<![CDATA[
<?php
$fp = ftp_connect("ftp.example.com");
/* Dit is hetzelfde als:
ftp_login($fp, "joeblow", "secret"); */
ftp_raw($fp, "USER joeblow");
ftp_raw($fp, "PASS secret");
?>
]]>
</programlisting>
</example>
</para>
<para>
Zie ook:
<function>ftp_exec</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-nl/reference/ftp/functions/ftp-chmod.xml
+++ phpdoc-nl/reference/ftp/functions/ftp-chmod.xml
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- EN-Revision: 1.1 Maintainer: truelight Status: ready -->
<refentry id="function.ftp-chmod">
<refnamediv>
<refname>ftp_chmod</refname>
<refpurpose>Zet de rechten van een bestand via FTP</refpurpose>
</refnamediv>
<refsect1>
<title>Beschrijving</title>
<methodsynopsis>
<type>string</type><methodname>ftp_chmod</methodname>
<methodparam><type>resource</type><parameter>ftp_stream</parameter></methodparam>
<methodparam><type>int</type><parameter>mode</parameter></methodparam>
<methodparam><type>string</type><parameter>filename</parameter></methodparam>
</methodsynopsis>
<para>
Zet de rechten van een extern bestand aangeduid met
<parameter>filename</parameter> naar <parameter>mode</parameter>
wat een <emphasis>octale</emphasis> waarde moet zijn.
</para>
<para>
Geeft de nieuwe bestands rechten als het goed ging, anders &false;.
</para>
<para>
Zie ook:
<function>chmod</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
-->