PHP5 constructor.
Source
public function __construct( $filename ) {
parent::__construct();
$this->_str = file_get_contents( $filename );
if ( false === $this->_str ) {
return false;
}
$this->_pos = 0;
}
| CARVIEW |
PHP5 constructor.
public function __construct( $filename ) {
parent::__construct();
$this->_str = file_get_contents( $filename );
if ( false === $this->_str ) {
return false;
}
$this->_pos = 0;
}
| Uses | Description |
|---|---|
POMO_StringReader::__construct()wp-includes/pomo/streams.php | PHP5 constructor. |
| Used by | Description |
|---|---|
POMO_CachedIntFileReader::__construct()wp-includes/pomo/streams.php | PHP5 constructor. |
POMO_CachedFileReader::POMO_CachedFileReader()wp-includes/pomo/streams.php | PHP4 constructor. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.