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

15 lines
543 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-09 19:43:34 +02:00
//var_dump(["nv", 61, 61, false, 333, 444, 232423, 234342, 243342423424, 234234234234, 234234234234, 234234234234, 34434, 344434, 2.2343, 3.03424, "dd"]);
var_dump($struct->unpack("2cxbxBx?xhxHxixIxlxLxqxQxnxNxfxdx2sx",
$struct->pack("2cxbxBx?xhxHxixIxlxLxqxQxnxNxfxdx2sx",
"nv", 100, 100, false, 333, 444, 232423, 234342, 234234234234, 234234234234, 234234234234, 234234234234, 34434, 344434, 2.2343,
3.03424, "dd"
2016-07-08 22:57:46 +02:00
)
));