POMO_CachedIntFileReader

Reads the contents of the file in the beginning.


Description Description


Source Source

File: wp-includes/pomo/streams.php

	class POMO_CachedIntFileReader extends POMO_CachedFileReader {
		/**
		 * PHP5 constructor.
		 */
		public function __construct( $filename ) {
			parent::POMO_CachedFileReader( $filename );
		}

		/**
		 * PHP4 constructor.
		 */
		function POMO_CachedIntFileReader( $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.