Syntax Syntax
Parameters Parameters
- $string
-
(Required)
- $start
-
(Required)
- $length
-
(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 ); } }