POMO_Reader::strlen( string $input_string ): int

In this article

Parameters

$input_stringstringrequired

Return

int

Source

public function strlen( $input_string ) {
	if ( $this->is_overloaded ) {
		return mb_strlen( $input_string, 'ascii' );
	} else {
		return strlen( $input_string );
	}
}

User Contributed Notes

You must log in before being able to contribute a note or feedback.