Warning: This method has been deprecated. Use POMO_CachedIntFileReader::__construct() instead.

POMO_CachedIntFileReader::POMO_CachedIntFileReader() WordPress Method

POMO_CachedIntFileReader::POMO_CachedIntFileReader() is a Wordpress method used to retrieve cached integers from a file. This is useful for storing and retrieving data that is frequently accessed, but does not need to be stored in a database.

POMO_CachedIntFileReader::POMO_CachedIntFileReader( $filename ) #

PHP4 constructor.


Description

Top ↑

See also


Top ↑

Source

File: wp-includes/pomo/streams.php

		public function POMO_CachedIntFileReader( $filename ) {
			_deprecated_constructor( self::class, '5.4.0', static::class );
			self::__construct( $filename );
		}


Top ↑

Changelog

Changelog
VersionDescription
5.4.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.