forked from NEKOGET/FuelPHP_docs_jp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ftp.html
848 lines (801 loc) · 22.7 KB
/
ftp.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./../assets/css/combined.css">
<link rel="shortcut icon" href="./../favicon.ico" />
<script src="http://www.google.com/jsapi" type="text/javascript"></script>
<script type="text/javascript">
var path = './../';
var class_prefix = "Ftp::";
</script>
<script src="./../assets/js/combined.js"></script>
<title>Ftp - クラス - FuelPHP ドキュメント</title>
</head>
<body>
<div id="container">
<header id="header">
<div class="table">
<h1>
<a href="http://fuelphp.com"><img height="37px" width="147px" src="./../assets/img/fuel.png" /></a>
<strong>Documentation</strong>
</h1>
<form id="google_search">
<p>
<span id="search_clear"> </span>
<input type="submit" name="search_submit" id="search_submit" value="検索" />
<input type="text" value="" id="search_input" name="search_input" />
</p>
</form>
</div>
<nav>
<div class="clear"></div>
</nav>
<a href="#" id="toc_handle">目次</a>
<div class="clear"></div>
</header>
<div id="cse">
<div id="cse_point"></div>
<div id="cse_content"></div>
</div>
<div id="main">
<h2>Ftp クラス</h2>
<p>FTP クラスは、リモートサーバで FTP プロトコルを使用してファイルのアップロード、ダウンロード、移動やミラーを行うことができます。</p>
<section>
<h3 id="configuration">設定</h3>
<p>FTP クラスは、 <kbd>fuel/core/config/ftp.php</kbd> にある設定ファイルで設定をします。デフォルトで設定がされています。設定を変更するには、設定ファイルをアプリケーションの設定ディレクトリにコピーし、そのファイルを変更してください。</p>
<p>次の設定を定義することができます。</p>
<table class="config">
<tbody>
<tr class="header">
<th>パラメータ</th>
<th>型</th>
<th>デフォルト</th>
<th>説明</th>
</tr>
<tr>
<th>hostname</th>
<td>string</td>
<td><pre class="php"><code>'localhost'</code></pre></td>
<td>
接続する FTP サーバの IP またはドメイン名。
</td>
</tr>
<tr>
<th>username</th>
<td>string</td>
<td><pre class="php"><code>''</code></pre></td>
<td>
オプション: ログインが必要な場合は、接続に用いるユーザ名。
</td>
</tr>
<tr>
<th>password</th>
<td>string</td>
<td><pre class="php"><code>''</code></pre></td>
<td>
オプション: ログインが必要な場合は、接続に用いるパスワード。
</td>
</tr>
<tr>
<th>timeout</th>
<td>integer</td>
<td><pre class="php"><code>90</code></pre></td>
<td>
全てのネットワーク操作におけるタイムアウトの秒数。
</td>
</tr>
<tr>
<th>port</th>
<td>integer</td>
<td><pre class="php"><code>21</code></pre></td>
<td>
FTP サーバが応答するポート番号。ほとんどのサーバは 21 を用いる。
</td>
</tr>
<tr>
<th>passive</th>
<td>boolean</td>
<td><pre class="php"><code>true</code></pre></td>
<td>
パッシブモードを使用するかどうか。 デフォルトで自動的にパッシブを使用するように設定されています。
</td>
</tr>
<tr>
<th>ssl_mode</th>
<td>boolean</td>
<td><pre class="php"><code>false</code></pre></td>
<td>
通常の FTP よりも若干安全な FTPS モードを使用する (注意: これは SFTP ではありません) 。
</td>
</tr>
<tr>
<th>debug</th>
<td>boolean</td>
<td><pre class="php"><code>false</code></pre></td>
<td>
デバックをするために、エラーメッセージを表示するかどうか。
</td>
</tr>
</tbody>
</table>
</section>
<article>
<h4 class="method" id="method_forge">forge($config = 'default', $connect = true)</h4>
<p><strong>forge</strong> メソッドは、異なる Config グループを参照するか<a href="config.html">設定オプション</a>を配列で渡すことで
FTP クラスの新しいインスタンスを作成することができます。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>はい</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$config</kbd></th>
<td><pre class="php"><code>'default'</code></pre></td>
<td>利用したい config グループの名前または設定の配列。</td>
</tr>
<tr>
<th><kbd>$connect</kbd></th>
<td><pre class="php"><code>true</code></pre></td>
<td>サーバへ自動的に接続します。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>Ftp オブジェクト</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>// デフォルトのサーバへ接続
$ftp = Ftp::forge();
// config/ftp.php で予め定義されているサーバへ接続
$ftp2 = Ftp::forge('image-storage');
// その場でサーバへ接続
$ftp3 = Ftp::forge(array(
'hostname' => 'fuelphp.com',
'username' => '',
'password' => '',
'timeout' => 90,
'port' => 21,
'passive' => true,
'ssl_mode' => false,
'debug' => false
));
if ($ftp3->delete_dir('/') === true)
{
exit('The world owes you a debt of gratitude');
}
else
{
exit('You tried and that is the main thing.');
}</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_connect">connect()</h4>
<p>
<strong>connect</strong> メソッドは、FTP リソースへ手動で接続することができます。
forge() で作成された ftp オブジェクトへ自動接続ができなかった時に、このメソッドを利用できます。
</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>いいえ</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
なし
</td>
</tr>
<tr>
<th>返り値</th>
<td>現在の FTP オブジェクト、メソッドチェーン用</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>// ftp オブジェクトを作成、しかし接続できない
$ftp = Ftp::forge(array(
'hostname' => 'ftp.example.com',
'username' => '',
'password' => '',
'timeout' => 90,
'port' => 21,
'passive' => true,
'ssl_mode' => false,
'debug' => false
), false);
// 何らかの処理
// ここでサーバに接続する
$ftp->connect();</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_change_dir">change_dir($path = '')</h4>
<p><strong>change_dir</strong> は、"カレントディレクトリ" を変更します。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>いいえ</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$path</kbd></th>
<td><pre class="php"><code>''</code></pre></td>
<td>移動したいリモートのパス。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>boolean</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>// /user/phil/public_html/some/path/ へ移動する
$ftp->change_dir('/public_html/some/path/');</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_mkdir">mkdir($path, $permissions = null)</h4>
<p><strong>mkdir</strong> メソッドは、リモートサーバ上で新しいディレクトリを作成します。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>いいえ</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$path</kbd></th>
<td><i>必須</i></td>
<td>作成したいリモートのディレクトリ。</td>
</tr>
<tr>
<th><kbd>$permissions</kbd></th>
<td><pre class="php"><code>null</code></pre></td>
<td>設定した場合は、ディレクトリへパーミッションが適用されます。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>boolean</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>// 書き込み可能なアップロードフォルダを作成する
$ftp->mkdir('/public_html/uploads/', 0777);</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_upload">upload($local_path, $remote_path, $mode = 'auto', $permissions = null)</h4>
<p>ローカルサーバからリモートサーバへファイルまたはディレクトリをアップロードします。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>いいえ</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$local_path</kbd></th>
<td><i>必須</i></td>
<td>ローカルサーバのパス。</td>
</tr>
<tr>
<th><kbd>$remote_path</kbd></th>
<td><i>必須</i></td>
<td>リモートサーバのパス。</td>
</tr>
<tr>
<th><kbd>$mode</kbd></th>
<td><pre class="php"><code>'auto'</code></pre></td>
<td>
オプションは <kbd>ascii</kbd> 、<kbd>binary</kbd> そして <kbd>auto</kbd> (デフォルト) です。
もし <kbd>auto</kbd> が設定された場合は、ソースファイルの拡張子からモードを判断します。</td>
</tr>
<tr>
<th><kbd>$permissions</kbd></th>
<td><pre class="php"><code>null</code></pre></td>
<td>設定した場合は、ディレクトリへパーミッションが適用されます。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>boolean</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>// myfile.html をアップロード
$ftp->upload('/local/path/to/myfile.html', '/public_html/myfile.html', 'ascii', 0775);</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_download">download($remote_path, $local_path, $mode = 'auto')</h4>
<p>リモートサーバからローカルサーバへファイルまたはディレクトリをダウンロードします。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>いいえ</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$remote_path</kbd></th>
<td><i>必須</i></td>
<td>リモートサーバのパス。</td>
</tr>
<tr>
<th><kbd>$local_path</kbd></th>
<td><i>必須</i></td>
<td>ローカルサーバのパス。</td>
</tr>
<tr>
<th><kbd>$mode</kbd></th>
<td><pre class="php"><code>'auto'</code></pre></td>
<td>
オプションは <kbd>ascii</kbd> 、<kbd>binary</kbd> そして <kbd>auto</kbd> (デフォルト) です。
もし <kbd>auto</kbd> が設定された場合は、ソースファイルの拡張子からモードを判断します。
</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>boolean</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>// myotherfile.html をダウンロード
$ftp->download('/public_html/myfile.html', '/local/path/to/myfile.html', 'ascii');</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_rename">rename($old_file, $new_file, $move = false)</h4>
<p>
リモートサーバのファイルを移動または名前変更をします。
</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>いいえ</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$old_file</kbd></th>
<td><i>必須</i></td>
<td>移動元または名前変更前のファイル。</td>
</tr>
<tr>
<th><kbd>$new_file</kbd></th>
<td><i>必須</i></td>
<td>移動先または名前変更後のファイル。</td>
</tr>
<tr>
<th><kbd>$move</kbd></th>
<td><pre class="php"><code>false</code></pre></td>
<td>
移動の場合は 'true'、名前変更の場合は 'false' 。
このフラグはデバッグエラーメッセージのみに使われます。
</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>boolean</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>// FTP サーバへ接続
$ftp = Ftp::forge($config);
// ファイルの名前変更
$ftp->rename('/path/to/oldfile.txt', '/path/to/newfile.txt', false);
// 接続を閉じる
$ftp->close();</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_move">move($old_file, $new_file)</h4>
<p>
<a href="#method_rename">rename()</a> の別名。$move フラグは <var>true</var> にセットされます。
</p>
</article>
<article>
<h4 class="method" id="method_delete_file">delete_file($filepath)</h4>
<p>
リモートサーバのファイルを削除します。
</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>いいえ</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$filepath</kbd></th>
<td><i>必須</i></td>
<td>削除するファイル。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>boolean</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>// FTP サーバへ接続
$ftp = Ftp::forge($config);
// ファイルを削除
if ( ! $ftp->delete_file('/path/to/file.txt'))
{
// 削除の失敗
}
// 接続を閉じる
$ftp->close();</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_delete">delete_dir($filepath)</h4>
<p>
リモートサーバのフォルダをすべて再帰的に削除します。
</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>いいえ</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$filepath</kbd></th>
<td><i>必須</i></td>
<td>削除するファイル。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>boolean</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>// FTP サーバへ接続
$ftp = Ftp::forge($config);
// 全ての中身と共にフォルダを削除する
if ( ! $ftp->delete_dir('/path/to/folder'))
{
// 削除の失敗
}
// 接続を閉じる
$ftp->close();</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_chmod">chmod($path, $perm)</h4>
<p>
リモートサーバ上のファイルのパーミッションを変更します。
</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>いいえ</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$path</kbd></th>
<td><i>必須</i></td>
<td>パーミッションを変更するファイル。</td>
</tr>
<tr>
<th><kbd>$perm</kbd></th>
<td><i>必須</i></td>
<td>パーミッション。8 進数の unix 形式で定義する。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>boolean</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>// FTP server へ接続
$ftp = Ftp::forge($config);
// 全てのユーザから書き込み可能にファイルを設定する
if ( ! $ftp->chmod('/path/to/file.txt', 0666))
{
// パーミッション変更の失敗
}
// 接続を閉じる
$ftp->close();</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_list_files">list_files($path = '.')</h4>
<p>
リモートサーバ上の指定したパスにあるすべてのファイルを一覧表示します。
</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>いいえ</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$path</kbd></th>
<td><pre class="php"><code>'.'</code></pre></td>
<td>リモートサーバのパス。デフォルトは<var>カレントディレクトリ</var>。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>array</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>// FTP サーバへ接続
$ftp = Ftp::forge($config);
// すべてのファイルを一覧表示する
if ( $files = $ftp->list_files('/path/to/files') === false)
{
// 一覧表示の失敗
}
else
{
/* 返り値はこのようになる
$files = array(3) {
[0]=>
string(11) "public_html"
[1]=>
string(10) "public_ftp"
[2]=>
string(3) "www"
*/
}
// 接続を閉じる
$ftp->close();</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_mirror">mirror($local_path, $remote_path)</h4>
<p>
再帰的にローカルフォルダとそれに内包されたすべて (サブフォルダも含む) を読み取り、FTP 経由でミラーを作成します。
元のファイルパスがどのようなディレクトリ構造でも、サーバに再現されます。
</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>いいえ</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$local_path</kbd></th>
<td><pre class="php"><code>'default'</code></pre></td>
<td>ローカルサーバのパス。</td>
</tr>
<tr>
<th><kbd>$remote_path</kbd></th>
<td><pre class="php"><code>true</code></pre></td>
<td>リモートサーバのパス。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>boolean</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>$ftp = Ftp::forge();
$ftp->connect($config);
$ftp->mirror('/path/to/myfolder/', '/public_html/myfolder/');
$ftp->close();</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_close">close()</h4>
<p>
<strong>close</strong> メソッドは、<var>forge()</var> または <var>connect()</var> によって作られたリモートサーバとの ftp 接続を閉じます。
</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>いいえ</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
なし
</td>
</tr>
<tr>
<th>返り値</th>
<td>boolean</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>// 接続を閉じる
if ( ! $ftp->close())
{
// 接続は開いていなかった
}</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
</div>
<footer>
<p>
© FuelPHP Development Team 2010-2016 - <a href="http://fuelphp.com">FuelPHP</a> is released under the MIT license.
[ <a href="https://github.com/fuel/docs/commits/1.8/develop/classes/ftp.html">原文コミット履歴</a> | <a href="https://github.com/NEKOGET/FuelPHP_docs_jp/commits/1.8/develop_japanese/classes/ftp.html">翻訳コミット履歴</a> | <a href="https://github.com/NEKOGET/FuelPHP_docs_jp/blob/1.8/develop_japanese/classes/ftp.html">GitHubで修正</a> ]
</p>
</footer>
</div>
</body>
</html>