/* }}} */
/* {{{ proto int ftp_login(int stream, string username, string password)
- Logs into the FTP server. */
+ Logs into the FTP server */
PHP_FUNCTION(ftp_login)
{
pval *arg1, *arg2, *arg3;
/* }}} */
/* {{{ proto string ftp_pwd(int stream)
- Returns the present working directory. */
+ Returns the present working directory */
PHP_FUNCTION(ftp_pwd)
{
pval *arg1;
/* }}} */
/* {{{ proto int ftp_fget(int stream, int fp, string remote_file, int mode)
- Retrieves a file from the FTP server and writes it to an open file. */
+ Retrieves a file from the FTP server and writes it to an open file */
PHP_FUNCTION(ftp_fget)
{
pval *arg1, *arg2, *arg3, *arg4;
/* }}} */
/* {{{ proto int ftp_pasv(int stream, int pasv)
- Turns passive mode on or off. */
+ Turns passive mode on or off */
PHP_FUNCTION(ftp_pasv)
{
pval *arg1, *arg2;
/* }}} */
/* {{{ proto int ftp_get(int stream, string local_file, string remote_file, int mode)
- Retrieves a file from the FTP server and writes it to a local file. */
+ Retrieves a file from the FTP server and writes it to a local file */
PHP_FUNCTION(ftp_get)
{
pval *arg1, *arg2, *arg3, *arg4;
/* }}} */
/* {{{ proto int ftp_fput(int stream, string local_file, string remote_file, int mode)
- Stores a file from an open file to the FTP server. */
+ Stores a file from an open file to the FTP server */
PHP_FUNCTION(ftp_fput)
{
pval *arg1, *arg2, *arg3, *arg4;
/* }}} */
/* {{{ proto int ftp_size(int stream, string path)
- Returns the size of the file, or -1 on error. */
+ Returns the size of the file, or -1 on error */
PHP_FUNCTION(ftp_size)
{
pval *arg1, *arg2;