list_files([$path = '.'])
Parameters: |
|
---|---|
Returns: |
An array list of files or FALSE on failure |
Return type: |
array |
Permits you to retrieve a list of files on your server returned as an array. You must supply the path to the desired directory.
1 2 | $list = $this ->ftp->list_files( '/public_html/' ); print_r( $list ); |
Please login to continue.