POMO_FileReader::read()publicWP 1.0

Метод класса: POMO_FileReader{}

Хуков нет.

Возвращает

Строку|false. Returns read string, otherwise false.

Использование

$POMO_FileReader = new POMO_FileReader();
$POMO_FileReader->read( $bytes );
$bytes(int) (обязательный)
-

Код POMO_FileReader::read() WP 6.5.2

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