For example:
In python:
pack("<4BI2H", 3, 118, 02, 26, 0, 161, 58)
�v���;
Trying to do the same in php:
pack("<4BI2H", 3, 118, 02, 26, 0, 161, 58)
""
Using an array to force the values recognition in php:
pack("<4BI2H", array(3, 118, 02, 26, 0, 161, 58))
��
So, they are not matching...