POMO_Reader::setEndian()
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() POMO Reader::setEndian code WP 6.7.2
public function setEndian( $endian ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid $this->endian = $endian; }