I would like any advice on how to convert this C code to PHP:
int main() {
char str[255];
float var=1.3f;
unsigned int *iptr;
iptr=(unsigned int*) &var;
sprintf(str,"%X\n",*iptr);
}
Basically, I need to export a lot of floating point numbers from a php process to C process and I was thinking to do it through a file or pipe using HEX encoding instead of traditional number encoding with decimal point. On the C side I will just convert binary data to floats by casting.
pack(),unpack()andbin2hex(). eg:bin2hex(pack('f', 3.2))will give youcdcc4c40– NullUserException♦ Oct 22 '12 at 21:03