So I'm reading the ftp functions in my PHP Reference manual. But I come along this "int stream" statement... In example:
ftp_delete(int stream, string path);
AND
ftp_cdup(int stream);
does "int stream" mean like if you set a variable $connect = ftp_connect(dfjkalsdf);, then it would do ftp_cdup($connect); ?
ftp() functions
Moderator: General Moderators
http://www.php.net/manual/en/function.ftp-connect.php
see also: http://www.php.net/manual/en/ref.ftp.php#ftp.examples
exactlyresource ftp_connect ( string host [, int port [, int timeout]])
Returns a FTP stream on success or FALSE on error.
see also: http://www.php.net/manual/en/ref.ftp.php#ftp.examples
