POMO_FileReader::read() WordPress Method
The POMO_FileReader::read() method is used to read a .mo file and return the contents as an array.
POMO_FileReader::read( int $bytes ) #
Contents
Parameters
- $bytes
(int)(Required)
Return
(string|false) Returns read string, otherwise false.
Source
File: wp-includes/pomo/streams.php
public function read( $bytes ) { return fread( $this->_f, $bytes ); }
Expand full source codeCollapse full source codeView on TracView on GitHub