POMO_FileReader::__construct() public WP 1.0
{} It's a method of the class: POMO_FileReader{}
No Hooks.
Return
null
. Null. Nothing.
Usage
$POMO_FileReader = new POMO_FileReader(); $POMO_FileReader->__construct( $filename );
- $filename(string) (required)
- -
Code of POMO_FileReader::__construct() POMO FileReader:: construct WP 5.7.1
function __construct( $filename ) {
parent::__construct();
$this->_f = fopen( $filename, 'rb' );
}