POMO_Reader::setEndian

Advertisement

Summery Summery

Sets the endianness of the file.

Syntax Syntax

POMO_Reader::setEndian( string $endian )

Parameters Parameters

$endian

(Required) Set the endianness of the file. Accepts 'big', or 'little'.

Source Source

File: wp-includes/pomo/streams.php

		function setEndian( $endian ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid
			$this->endian = $endian;
		}

Advertisement

Advertisement

Leave a Reply