POMO_Reader::__construct()publicWP 1.0

PHP5 constructor.

Method of the class: POMO_Reader{}

No Hooks.

Return

null. Nothing (null).

Usage

$POMO_Reader = new POMO_Reader();
$POMO_Reader->__construct();

POMO_Reader::__construct() code WP 6.5.2

public function __construct() {
	if ( function_exists( 'mb_substr' )
		&& ( (int) ini_get( 'mbstring.func_overload' ) & 2 ) // phpcs:ignore PHPCompatibility.IniDirectives.RemovedIniDirectives.mbstring_func_overloadDeprecated
	) {
		$this->is_overloaded = true;
	} else {
		$this->is_overloaded = false;
	}

	$this->_pos = 0;
}