forked from shixinke/php-ide-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmsgpack.php
More file actions
76 lines (65 loc) · 771 Bytes
/
msgpack.php
File metadata and controls
76 lines (65 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php
/**
* Msgpack自动补全类(基于最新的2.0.2版本)
* @author shixinke(http://www.shixinke.com)
* @modified 2016/12/23
*/
/**
*
*/
/**
* php.ini配置选项:
*
* msgpack.error_display=1
*
* msgpack.php_only=1
*
* msgpack.illegal_key_insert=0
*
* msgpack.use_str8_serialization=1
*/
/**
*/
define('MESSAGEPACK_OPT_PHPONLY', -1001);
/**
*
*
* @example
* @param $value
* @return
*/
function msgpack_serialize($value)
{
}
/**
*
*
* @example
* @param $str
* @param $object
* @return
*/
function msgpack_unserialize($str, $object)
{
}
/**
*
*
* @example
* @param $value
* @return
*/
function msgpack_pack($value)
{
}
/**
*
*
* @example
* @param $str
* @param $object
* @return
*/
function msgpack_unpack($str, $object)
{
}