Hi,
<?php
function macheBinaer($zahl)
{
return pack('V', $zahl);
}
$int=macheBinaer(15);
Bevor du das jetzt so nutzt, um die Zahl 15 in deine Datei zu schreiben, solltest du dir noch mal die Ausgabe von
`var_dump(macheBinaer(15));`{:.language-php}
anschauen.
MfG ChrisB
--
Light travels faster than sound - that's why most people appear bright until you hear them speak.