POMO_Reader::setEndian() WordPress Method
The POMO_Reader::setEndian() method is used to set the endianness of a POMO file.
POMO_Reader::setEndian( string $endian ) #
Sets the endianness of the file.
Contents
Parameters
- $endian
(string)(Required)Set the endianness of the file. Accepts 'big', or 'little'.
Source
File: wp-includes/pomo/streams.php
public function setEndian( $endian ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid $this->endian = $endian; }
Expand full source codeCollapse full source codeView on TracView on GitHub