WP_Filesystem_ftpsockets::get_contents_arraypublicWP 2.5.0

Reads entire file into an array.

Method of the class: WP_Filesystem_ftpsockets{}

No Hooks.

Returns

string[]|false. File contents in an array on success, false on failure.

Usage

$WP_Filesystem_ftpsockets = new WP_Filesystem_ftpsockets();
$WP_Filesystem_ftpsockets->get_contents_array( $file );
$file(string) (required)
Path to the file.

Changelog

Since 2.5.0 Introduced.

WP_Filesystem_ftpsockets::get_contents_array() code WP 7.1

public function get_contents_array( $file ) {
	$contents = $this->get_contents( $file );
	if ( is_string( $contents ) ) {
		return explode( "\n", $contents );
	}
	return false;
}