POMO_FileReader::__construct()publicWP 1.0

Method of the class: POMO_FileReader{}

No Hooks.

Return

null. Nothing (null).

Usage

$POMO_FileReader = new POMO_FileReader();
$POMO_FileReader->__construct( $filename );
$filename(string) (required)
-

POMO_FileReader::__construct() code WP 6.5.2

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