WP_Filesystem_Base::get_contents_array()publicWP 2.5.0

Reads entire file into an array.

Method of the class: WP_Filesystem_Base{}

No Hooks.

Return

Array|false. File contents in an array on success, false on failure.

Usage

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

Changelog

Since 2.5.0 Introduced.

WP_Filesystem_Base::get_contents_array() code WP 6.5.2

public function get_contents_array( $file ) {
	return false;
}