POMO_FileReader::__constructpublicWP 1.0

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() code WP 7.0

public function __construct( $filename ) {
	parent::__construct();
	$this->_f = fopen( $filename, 'rb' );
}