POMO_Reader::__construct
PHP5 constructor.
Method of the class: POMO_Reader{}
No Hooks.
Returns
null. Nothing (null).
Usage
$POMO_Reader = new POMO_Reader(); $POMO_Reader->__construct();
POMO_Reader::__construct() POMO Reader:: construct code WP 7.0
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;
}