POMO_CachedFileReader

Reads the contents of the file in the beginning.


Description Description


Source Source

File: wp-includes/pomo/streams.php

	class POMO_CachedFileReader extends POMO_StringReader {
		/**
		 * PHP5 constructor.
		 */
		function __construct( $filename ) {
			parent::POMO_StringReader();
			$this->_str = file_get_contents( $filename );
			if ( false === $this->_str ) {
				return false;
			}
			$this->_pos = 0;
		}

		/**
		 * PHP4 constructor.
		 */
		public function POMO_CachedFileReader( $filename ) {
			self::__construct( $filename );
		}
	}


Top ↑

Methods Methods


Top ↑

User Contributed Notes User Contributed Notes

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