Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
PHP is written in C. It stores all its data internally using C data types. You shouldn't need to do much conversion. Certainly not printing to a Hex string as you seem to be implying. – Spudley Oct 22 '12 at 20:53
@Spudley You do if you want it printed as hex. But I wonder if that makes sense. I don't think I've ever seen hexadecimal floating point numbers. – GolezTrol Oct 22 '12 at 20:55
B.t.w. php.net/manual/en/function.sprintf.php – GolezTrol Oct 22 '12 at 20:56
1  
True, but with the risk of having and incompatible representation. I think PHP isn't very good at this pointer math, but I wouldn't trust the binary representation of a number to be concise in a scripting language like PHP. Theoretically it could change anytime, which is less likely in C. – GolezTrol Oct 22 '12 at 20:58
1  
Nulik, you might want to look at pack(),unpack() and bin2hex(). eg: bin2hex(pack('f', 3.2)) will give you cdcc4c40 – NullUserException Oct 22 '12 at 21:03
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.