POMO_Reader::strlen( string $string )
Description Description
Parameters Parameters
- $string
-
(string) (Required)
Return Return
(int)
Source Source
File: wp-includes/pomo/streams.php
function strlen( $string ) { if ( $this->is_overloaded ) { return mb_strlen( $string, 'ascii' ); } else { return strlen( $string ); } }
Expand full source code Collapse full source code View on Trac