PHP pack() function

การกำหนดและการใช้งาน

pack() function จะใส่ข้อมูลเข้าไปใน string ที่เป็น binary

ภาษาคำสั่ง

pack(format,args+)
ตัวแปร คำอธิบาย
format จำเป็น. กำหนดรูปแบบที่ใช้ในการทำ wrapper ข้อมูล
args+ เลือกได้. กำหนดค่าของตัวแปรหนึ่งหรือหลายตัวที่ถูกทำการทำ wrapper

format ค่าที่อาจมีของประมาณ

  • a - NUL-padded string
  • A - SPACE-padded string
  • h - Hex string, low nibble first
  • H - Hex string, high nibble first
  • c - signed char
  • C - unsigned char
  • s - signed short (เส้นใต้ 16 บิต, ระบบ byte order ของเครื่อง)
  • S - unsigned short (เส้นใต้ 16 บิต, ระบบ byte order ของเครื่อง)
  • n - unsigned short (เส้นใต้ 16 บิต, ระบบ byte order มหาอุบาย)
  • v - unsigned short (เส้นใต้ 16 บิต, ระบบ byte order ละติสเซียน)
  • i - signed integer (machine dependent size and byte order)
  • I - unsigned integer (machine dependent size and byte order)
  • l - signed long (always 32 bit, machine byte order)
  • L - unsigned long (always 32 bit, machine byte order)
  • N - unsigned long (always 32 bit, big endian byte order)
  • V - unsigned long (always 32 bit, little endian byte order)
  • f - float (machine dependent size and representation)
  • d - double (machine dependent size and representation)
  • x - NUL byte
  • X - Back up one byte
  • @ - NUL-fill to absolute position

ตัวอย่าง

ตัวอย่าง 1

<?php
echo pack("C3",80,72,80);
?>

ออกแบบ:

PHP

ตัวอย่าง 2

<?php
echo pack("C*",80,72,80);
?>

ออกแบบ:

PHP