POMO_Reader::setEndian()publicWP 1.0

Sets the endianness of the file.

Method of the class: POMO_Reader{}

No Hooks.

Return

null. Nothing (null).

Usage

$POMO_Reader = new POMO_Reader();
$POMO_Reader->setEndian( $endian );
$endian(string) (required)
Set the endianness of the file. Accepts 'big', or 'little'.

POMO_Reader::setEndian() code WP 6.5.2

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