PHP ftp_get_option() Function

The ftp_get_option() function returns runtime options of the current FTP connection.

ftp_get_option — Retrieves various runtime behaviours of the current FTP stream

mixed ftp_get_option ( resource $ftp_stream , int $option )

This function returns the value for the requested option from the specified FTP connection.

Example -

ParameterDescription
ftp_streamThe link identifier of the FTP connection
optionCurrently, the following options are supported:

Returns the value on success or FALSE if the given option is not supported. In the latter case, a warning message is also thrown.