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

9 lines
225 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
2016-07-08 02:19:00 +02:00
var_dump($struct->unpack(">2cx2c?iflh", $struct->pack(">2cx2c?iflh", "fa", "fs", true, 45, 2.1, 5000, 5005)));