You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An FTP Client library that wraps the FTP extension functions in an OOP way.
@@ -11,7 +12,7 @@ An FTP Client library that wraps the FTP extension functions in an OOP way.
11
12
12
13
## Requirements
13
14
14
-
* PHP version >= 5.5.0.
15
+
* PHP version >= 5.6.0.
15
16
* FTP extension enabled.
16
17
17
18
## Installation
@@ -54,12 +55,12 @@ $connection->open();
54
55
55
56
After creating an FTP connection you may need to set some options like turning the connection to the passive mode, well for that we provide the `FtpConfig` class that includes methods to manage the FTP connection and set its runtime options.
56
57
57
-
58
-
**option**| default | description
59
-
--- |--- |---
60
-
passive| false| Turning the passive mode ON/OFF.
61
-
timeout | 90| Sets timeout value of all FTP transfer operations.
62
-
autoSeek | true | Should be sets to true.
58
+
option | class method | default | description
59
+
--- |--- |--- |---
60
+
passive| setPassive | false | Turning the passive mode ON/OFF.
61
+
timeout | setTimeout | 90 | Sets timeout value of all FTP transfer operations.
62
+
autoSeek | setAutoSeek | true | Should be sets to true to resume transfer operations.
63
+
usePassiveAddress | usePassiveAddress | true| Whether or not to use the passive IP address returned after sending the passive command through the control channel.
0 commit comments