POMO_Reader::substr( string $string, int $start, int $length )
Parameters
- $string
-
(Required)
- $start
-
(Required)
- $length
-
(Required)
Return
(string)
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);
}
}