POMO_Reader::substr( string $string, int $start, int $length )


Description Description


Parameters Parameters

$string

(string) (Required)

$start

(int) (Required)

$length

(int) (Required)


Top ↑

Return Return

(string)


Top ↑

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 );
			}
		}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.