PHP code example of mracine / php-binary-string

1. Go to this page and download the library: Download mracine/php-binary-string library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

mracine / php-binary-string example snippets



use mracine\Helpers\BinaryStringHelper;

//   0xFF7 => chr(0x0F).chr(0xF7)
//   0x12345678 => chr(0x12).chr(0x34).chr(0x56).chr(0x76)

// Compatible with all xx bits systems (16, 32 ...) 

$networkReadyString =  BinaryStringHelper::IntegerToNBOBinaryString(123456789);
// $network ready string contains chr(0x7).chr(0x5B).chr(0xCD).chr(0x15)
$networkReadyString =  BinaryStringHelper::IntegerToNBOBinaryString(0x12345);
// $network ready string contains chr(0x1).chr(0x23).chr(0x45)