PHP 8.5.0 Alpha 1 available for testing

Voting

: min(nine, six)?
(Example: nine)

The Note You're Voting On

ludwig at kni-online dot de
5 years ago
Don't forget to decode user-defined-pseudo-byte-sequences before unpacking...
<?php
$byte_code_string
= '00004040';
var_dump ( unpack ( 'f', $byte_code_string ) );
?>
Result:
array(1) {
[1]=>
float(6.4096905560973E-10)
}

whereas
<?php
$byte_code_string
= '00004040';
var_dump ( unpack ( 'f', hex2bin ( $byte_code_string ) ) );
?>
Result:
array(1) {
[1]=>
float(3)
}

<< Back to user notes page

To Top