WP_Filesystem_FTPext::size
Gets the file size (in bytes).
Method of the class: WP_Filesystem_FTPext{}
No Hooks.
Returns
Int|false. Size of the file in bytes on success, false on failure.
Usage
$WP_Filesystem_FTPext = new WP_Filesystem_FTPext(); $WP_Filesystem_FTPext->size( $file );
- $file(string) (required)
- Path to file.
Changelog
| Since 2.5.0 | Introduced. |
WP_Filesystem_FTPext::size() WP Filesystem FTPext::size code WP 6.9.1
public function size( $file ) {
$size = ftp_size( $this->link, $file );
return ( $size > -1 ) ? $size : false;
}