diff options
author | Andrew Skalski <askalski@php.net> | 1999-09-27 14:07:09 +0000 |
---|---|---|
committer | Andrew Skalski <askalski@php.net> | 1999-09-27 14:07:09 +0000 |
commit | 0413f524800e8830e2fdb161b61284a039504545 (patch) | |
tree | c571a63242a24bd0ae7edff33138428203f575c6 /ext/ftp/php_ftp.h | |
parent | 10591231ca090c3f3353d7d61a46c1606d7ffde8 (diff) | |
download | php-git-0413f524800e8830e2fdb161b61284a039504545.tar.gz |
Added functions ftp_{pasv,size,mdtm,fget,fput}
PASV mode is now supported; file size and last-modified time can now
be fetched from servers that support them; files now may be stored to and
retrieved from open files, in addition to disk files.
Diffstat (limited to 'ext/ftp/php_ftp.h')
-rw-r--r-- | ext/ftp/php_ftp.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/ftp/php_ftp.h b/ext/ftp/php_ftp.h index 05173d5909..1515b79725 100644 --- a/ext/ftp/php_ftp.h +++ b/ext/ftp/php_ftp.h @@ -59,8 +59,13 @@ PHP_FUNCTION(ftp_rmdir); PHP_FUNCTION(ftp_nlist); PHP_FUNCTION(ftp_rawlist); PHP_FUNCTION(ftp_systype); +PHP_FUNCTION(ftp_pasv); PHP_FUNCTION(ftp_get); +PHP_FUNCTION(ftp_fget); PHP_FUNCTION(ftp_put); +PHP_FUNCTION(ftp_fput); +PHP_FUNCTION(ftp_size); +PHP_FUNCTION(ftp_mdtm); PHP_FUNCTION(ftp_quit); #define phpext_ftp_ptr php3_ftp_module_ptr |