PHP how to integer (int) transfer byte set (byte)?

1-> 01 00 00
255-> ff 00 00
256-> 00 01 00

PHP converts the left to the right?

Php
Jun.20,2022

$I = 123456;
$ar = unpack ("C *", pack ("L", $I));

Menu