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