POMO_FileReader::read( int $bytes )


Description Description


Parameters Parameters

$bytes

(int) (Required)


Top ↑

Return Return

(string|false) Returns read string, otherwise false.


Top ↑

Source Source

File: wp-includes/pomo/streams.php

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


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.