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

POMO_FileReader::POMO_FileReader() WordPress Method

POMO_FileReader::POMO_FileReader() is a method used to read a PO or MO file. It returns a POMO_File object.

POMO_FileReader::POMO_FileReader( $filename ) #

PHP4 constructor.


Description

Top ↑

See also


Top ↑

Source

File: wp-includes/pomo/streams.php

		public function POMO_FileReader( $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.