PHP code example of thesis / endian

1. Go to this page and download the library: Download thesis/endian 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/ */

    

thesis / endian example snippets




declare(strict_types=1);

 endian::network->unpackInt32(
    endian::network->packInt32(-200),
); // -200



declare(strict_types=1);

 endian::big->unpackInt8(
    endian::big->packInt8(17),
); // 17



declare(strict_types=1);

 endian::little->unpackFloat(
    endian::little->packFloat(2.2),
); // 2.2



declare(strict_types=1);

 endian::native->unpackInt64(
    endian::native->packInt64(\PHP_INT_MAX),
); // 9223372036854775807