International PHP Conference Munich 2025

Voting

: max(five, zero)?
(Example: nine)

The Note You're Voting On

Patrik Fimml
19 years ago
You will get the same effect with

<?php
function _readInt($fp)
{
return
unpack('V', fread($fp, 4));
}
?>

or unpack('N', ...) for big-endianness.

<< Back to user notes page

To Top