I am getting
Warning: pack(): 1 arguments unused in
$vector = pack("H*",0x77,0x99);
$vector = pack("H*","4A","76"); // with quotes also give same warning
but if i use only one value there is no Warning
$vector = pack("H*",0x77);
Do anybody know about this warning ?
what value should i pass to pack . is it should be hex?