recent searches:
include functions ,
variable functions ,
post functions...
If you are new to PHP or just need to refresh your skills, this is the place to start. This series of tutorials will give you the basic knowledge you will need to create a simple PHP website.
PHP is a reflective programming language originally designed for producing dynamic web pages.[1] PHP is used mainly in server-side scripting, but can be used from a command line interface or in standalone graphical applications. Textual User Interfaces can also be created using ncurses.
The functions in this extension implement client access to file servers speaking the File Transfer Protocol (FTP) as defined in http://www.faqs.org/rfcs/rfc959. This extension is meant for detailed access to an FTP server providing a wide range of control to the executing script. If you only wish to read from or write to a file on an FTP server, consider using the ftp:// wrapper with the filesystem functions which provide a simpler and more intuitive interface.
No external libraries are needed to build this extension.
In order to use FTP functions with your PHP configuration, you should
add the --enable-ftp option when
installing PHP 4 or greater or --with-ftp
when using PHP 3.
The windows version of PHP has built in support for this extension. You do not need to load any additional extension in order to use these functions.
This extension has no configuration directives defined in php.ini.
This extension uses one resource type, which is the link identifier of the FTP connection, returned by ftp_connect() or ftp_ssl_connect().
The constants below are defined by this extension, and will only be available when the extension has either been compiled into PHP or dynamically loaded at runtime.
The following constants were introduced in PHP 4.3.0.
See ftp_set_option() for information.
Automatically determine resume position and start position for GET and PUT requests (only works if FTP_AUTOSEEK is enabled)
Asynchronous transfer has failed
Asynchronous transfer has finished
Asynchronous transfer is still active
Another Useful functions:
wrappers.ftp | ref.ftp | function.ssh2-sftp | function.ssh2-sftp-unlink | function.ssh2-sftp-symlink | function.ssh2-sftp-stat | function.ssh2-sftp-rmdir | function.ssh2-sftp-rename | function.ssh2-sftp-realpath | function.ssh2-sftp-readlink | function.ssh2-sftp-mkdir | function.ssh2-sftp-lstat | function.ftp-systype | function.ftp-ssl-connect | function.ftp-size | function.ftp-site | function.ftp-set-option | function.ftp-rmdir | function.ftp-rename | function.ftp-rawlist | function.ftp-raw | function.ftp-quit | function.ftp-pwd | function.ftp-put | function.ftp-pasv | function.ftp-nlist | function.ftp-nb-put | function.ftp-nb-get | function.ftp-nb-fput | function.ftp-nb-fget | function.ftp-nb-continue | function.ftp-mkdir | function.ftp-mdtm | function.ftp-login | function.ftp-get | function.ftp-get-option | function.ftp-fput | function.ftp-fget | function.ftp-exec | function.ftp-delete | function.ftp-connect | function.ftp-close | function.ftp-chmod | function.ftp-chdir | function.ftp-cdup | function.ftp-alloc |
PHP is a widely-used general-purpose scripting language that is especially suited for Web development and can be embedded into HTML. If you are new to PHP and want to get some idea of how it works, try the introductory tutorial. After that, check out the online manual, and the example archive sites and some of the other resources available in the links section.