POMO_CachedFileReader::__construct( $filename )

In this article

PHP5 constructor.

Source

public function __construct( $filename ) {
	parent::__construct();
	$this->_str = file_get_contents( $filename );
	if ( false === $this->_str ) {
		return false;
	}
	$this->_pos = 0;
}

User Contributed Notes

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