We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f1e8f7 commit 6d19225Copy full SHA for 6d19225
README.md
@@ -29,6 +29,7 @@ Connect to a server FTP :
29
30
```php
31
$ftp = new \yii2mod\ftp\FtpClient();
32
+$host = 'ftp.example.com';
33
$ftp->connect($host);
34
$ftp->login($login, $password);
35
```
@@ -39,6 +40,7 @@ Connect to a server FTP via SSL (on port 22 or other port) :
39
40
41
42
43
44
$ftp->connect($host, true, 22);
45
46
0 commit comments