mirror of
https://github.com/php/doc-ja.git
synced 2026-03-24 07:02:08 +01:00
73 lines
1.8 KiB
XML
73 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: 4d1c34c9b7a30cfc3a59641122c707a2812cfed7 Maintainer: takagi Status: ready -->
|
|
<!-- CREDITS: hirokawa -->
|
|
|
|
<chapter xml:id="ftp.examples" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
&reftitle.examples;
|
|
<section xml:id="ftp.examples-basic">
|
|
<title>基本的な使用法</title>
|
|
<para>
|
|
<example>
|
|
<title>FTP の例</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
// 接続を確立する
|
|
$ftp = ftp_connect($ftp_server);
|
|
|
|
// ユーザー名とパスワードでログインする
|
|
$login_result = ftp_login($ftp, $ftp_user_name, $ftp_user_pass);
|
|
|
|
// 接続できたか確認する
|
|
if ((!$ftp) || (!$login_result)) {
|
|
echo "FTP connection has failed!";
|
|
echo "Attempted to connect to $ftp_server for user $ftp_user_name";
|
|
exit;
|
|
} else {
|
|
echo "Connected to $ftp_server, for user $ftp_user_name";
|
|
}
|
|
|
|
// ファイルをアップロードする
|
|
$upload = ftp_put($ftp, $destination_file, $source_file, FTP_BINARY);
|
|
|
|
// アップロード状況を確認する
|
|
if (!$upload) {
|
|
echo "FTP upload has failed!";
|
|
} else {
|
|
echo "Uploaded $source_file to $ftp_server as $destination_file";
|
|
}
|
|
|
|
// FTP ストリームを閉じる
|
|
ftp_close($ftp);
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
</para>
|
|
</section>
|
|
</chapter>
|
|
|
|
<!-- 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=xml
|
|
vi: ts=1 sw=1
|
|
-->
|
|
|
|
|