POMO_Reader::setEndian( string $endian )

Sets the endianness of the file.


Description Description


Parameters Parameters

$endian

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


Top ↑

Source Source

File: wp-includes/pomo/streams.php

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

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.