POMO_Reader::strlen( string $string )


Description Description


Parameters Parameters

$string

(string) (Required)


Top ↑

Return Return

(int)


Top ↑

Source Source

File: wp-includes/pomo/streams.php

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


Top ↑

User Contributed Notes User Contributed Notes

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