WP_Filesystem_SSH2::get_contents_array()
Reads entire file into an array.
Method of the class: WP_Filesystem_SSH2{}
No Hooks.
Return
Array|false
. File contents in an array on success, false on failure.
Usage
$WP_Filesystem_SSH2 = new WP_Filesystem_SSH2(); $WP_Filesystem_SSH2->get_contents_array( $file );
- $file(string) (required)
- Path to the file.
Changelog
Since 2.7.0 | Introduced. |
WP_Filesystem_SSH2::get_contents_array() WP Filesystem SSH2::get contents array code WP 6.6.2
public function get_contents_array( $file ) { return file( $this->sftp_path( $file ) ); }