1
0
mirror of https://github.com/danog/PHPStruct.git synced 2024-11-30 04:19:08 +01:00
PHPStruct/example.php

9 lines
186 B
PHP
Raw Normal View History

2016-07-04 01:43:23 +02:00
<?php
2016-07-06 14:24:07 +02:00
//require('vendor/autoload.php');
require('lib/danog/PHP/Struct.php');
$struct = new danog\PHP\Struct();
2016-07-04 01:43:23 +02:00
2016-07-06 23:36:35 +02:00
var_dump($struct->unpack("2cx2c", $struct->pack("2cx2c", "fa", "fs")));