Parameters
$input_string
stringrequired$start
intrequired$length
intrequired
Source
public function substr( $input_string, $start, $length ) {
if ( $this->is_overloaded ) {
return mb_substr( $input_string, $start, $length, 'ascii' );
} else {
return substr( $input_string, $start, $length );
}
}
User Contributed Notes
You must log in before being able to contribute a note or feedback.