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
Good point, but we have to know first that implicit FTP connections are no commonly supported among FTP servers and do not represent any FTP standard, unlike explicit mode see, as a result, implementation of FTP servers may vary, and compatibility issues might become a headache.
If we provide an implicit FTP connection we have to implement new API methods specific for implicit FTP connection usage because I don't think there is a way to create a new FTP resource handle that is created with the implicit mode and use this resource handle with the native FTP extension functions ftp_*, therefore if we decided to add this feature we have like to create another classes entities that have no relation with the current library design.
Note: I think it is not necessary to use cURL to create an implicit FTP connection, we can use socket or stream socket functions in PHP, or we can use our Lazzard component Lazzard/FtpBridge to do that but it has no stable release yet.
As title, the
FtpSSLConnection
class is based on the ftp_ssl_connect. But it's only available on the explicit mode.To support the FTP SSL connection with the implicit mode, it can use the
cURL
extension to complete that.Some useful references are as follows:
The text was updated successfully, but these errors were encountered: