$hostname
$hostname : string
FTP Server hostname
FTP Class
changedir(string $path, boolean $suppress_debug = FALSE) : boolean
Change directory
The second parameter lets us momentarily turn off debugging so that this function can be used to test for the existence of a folder without throwing an error. There's no FTP equivalent to is_dir() so we do it by trying to change to a particular directory. Internally, this parameter is only used by the "mirror" function below.
string | $path | |
boolean | $suppress_debug |
mirror(string $locpath, string $rempath) : boolean
Read a directory and recreate it remotely
This function recursively reads a folder and everything it contains (including sub-folders) and creates a mirror via FTP based on it. Whatever the directory structure of the original file path will be recreated on the server.
string | $locpath | Path to source with trailing slash |
string | $rempath | Path to destination - include the base folder with trailing slash |