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'.
Source Source
File: wp-includes/pomo/streams.php
function setEndian( $endian ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid $this->endian = $endian; }
Expand full source code Collapse full source code View on Trac