POMO_FileReader::read()publicWP 1.0

Method of the class: POMO_FileReader{}

No Hooks.

Return

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.5.2

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