POMO_StringReader::__construct() WordPress Method
The POMO_StringReader::__construct() method is used to create a new string reader object for reading strings from a given string. This method takes a single string argument which is the string to be read.
POMO_StringReader::__construct( $str = '' ) #
PHP5 constructor.
Source
File: wp-includes/pomo/streams.php
public function __construct( $str = '' ) { parent::__construct(); $this->_str = $str; $this->_pos = 0; }
Expand full source codeCollapse full source codeView on TracView on GitHub