API16

API16:JFTP/isConnected

From Joomla! Documentation

Description

Method to determine if the object is connected to an FTP server


<! removed transcluded page call, red link never existed >

Syntax

isConnected()


Returns

boolean True if connected

Defined in

libraries/joomla/client/ftp.php

Importing

jimport( 'joomla.client.ftp' );

Source Body

function isConnected()
{
        return is_resource($this->_conn);
}


<! removed transcluded page call, red link never existed >

Examples

Code Examples