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

POMO_StringReader::POMO_StringReader() WordPress Method

The POMO_StringReader::POMO_StringReader() WordPress method is used to construct a new POMO_StringReader object.

POMO_StringReader::POMO_StringReader( $str = '' ) #

PHP4 constructor.


Description

Top ↑

See also


Top ↑

Source

File: wp-includes/pomo/streams.php

		public function POMO_StringReader( $str = '' ) {
			_deprecated_constructor( self::class, '5.4.0', static::class );
			self::__construct( $str );
		}


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.