POMO_Reader::setEndian
Sets the endianness of the file.
Method of the class: POMO_Reader{}
No Hooks.
Returns
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() POMO Reader::setEndian code WP 6.9.1
public function setEndian( $endian ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid
$this->endian = $endian;
}