POMO_FileReader::__construct
Method of the class: POMO_FileReader{}
No Hooks.
Returns
null. Nothing (null).
Usage
$POMO_FileReader = new POMO_FileReader(); $POMO_FileReader->__construct( $filename );
- $filename(string) (required)
- .
POMO_FileReader::__construct() POMO FileReader:: construct code WP 7.0
public function __construct( $filename ) {
parent::__construct();
$this->_f = fopen( $filename, 'rb' );
}