POMO_Reader::strlen() public WP 1.0
{} It's a method of the class: POMO_Reader{}
No Hooks.
Return
Int
. Null. Nothing.
Usage
$POMO_Reader = new POMO_Reader(); $POMO_Reader->strlen( $string );
- $string(string) (required)
- -
Code of POMO_Reader::strlen() POMO Reader::strlen WP 5.7
function strlen( $string ) {
if ( $this->is_overloaded ) {
return mb_strlen( $string, 'ascii' );
} else {
return strlen( $string );
}
}