POMO_FileReader::readpublicWP 1.0

Method of the class: POMO_FileReader{}

No Hooks.

Returns

String|false. Returns read string, otherwise false.

Usage

$POMO_FileReader = new POMO_FileReader();
$POMO_FileReader->read( $bytes );
$bytes(int) (required)
.

POMO_FileReader::read() code WP 6.8.1

public function read( $bytes ) {
	return fread( $this->_f, $bytes );
}