array ftp_nlist ( resource $ftp_stream , string $directory )
Returns a list of files in the given directory
<?php
// set up basic connection
$conn_id = ftp_connect($ftp_server);
// login with username and password
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
// get contents of the current directory
$contents = ftp_nlist($conn_id, ".");
// output $contents
var_dump($contents);
?>
phpfacilbr - FTP(listar conteudos)
0 Comment:
Post a Comment