Pyh.conf’25: a new PHP conference for the Russian-speaking community

Voting

: four minus one?
(Example: nine)

The Note You're Voting On

aRc
22 years ago
in windows, ftp_nlist will die on a directory with a space in it's name. to get around this, use ftp_chdir:

//change directory
ftp_chdir($conn, "directory with spaces");
//then blindly list
$contents = ftp_nlist($conn, "");

<< Back to user notes page

To Top