Verilen yapı ile ikili dosyası oluşturun

0 Cevap php

Bir cihaz cadı ikili biçim stili config var ve ben bu üretmek zorunda on-the-fly dosyaları.

İçerik yapısı yapılandırma ayarları (başına parametresi 1) formun her birinin bir dizi oluşur gerekir:

  • Tip
  • Uzunluk
  • Değer

burada:

  • Tür: parametreyi tanımlayan bir tek sekizli bir tanımlayıcı
  • Uzunluk: is a single octet containing the length of the value field in octets (not including type and length fields)
  • Değer: is from one to 254 octets containing the specific value for the parameter

Ben karşılık gelen bir tablo var

 Tip_code[int] => { Tip_length[int] => Değer[int/string/hex/etc.] }

How to parse that table to that binary format? And, second way, how to parse that binary file, to php array format back?

0 Cevap