POMO_StringReader::seekto( int $pos )


Description Description


Parameters Parameters

$pos

(int) (Required)


Top ↑

Return Return

(int)


Top ↑

Source Source

File: wp-includes/pomo/streams.php

		function seekto( $pos ) {
			$this->_pos = $pos;
			if ( $this->strlen( $this->_str ) < $this->_pos ) {
				$this->_pos = $this->strlen( $this->_str );
			}
			return $this->_pos;
		}

Top ↑

User Contributed Notes User Contributed Notes

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