PHP code example of yoya / array_typed

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

    

yoya / array_typed example snippets



= new Array_Uint8(1024);
$arr[100] = 0x7F;
var_dump($arr[100]);
$arr = new Array_Sint8(1024);
$arr[100] = -0x80;
var_dump($arr[100]);