POMO_FileReader::__construct() WordPress Method
The POMO_FileReader::__construct() method is used to construct a new POMO_FileReader object. This object can be used to read PO and MO files.
POMO_FileReader::__construct( string $filename ) #
Parameters
- $filename
(string)(Required)
Source
File: wp-includes/pomo/streams.php
public function __construct( $filename ) { parent::__construct(); $this->_f = fopen( $filename, 'rb' ); }
Expand full source codeCollapse full source codeView on TracView on GitHub