forked from msgpack/msgpack-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path029.phpt
More file actions
57 lines (51 loc) · 1.01 KB
/
029.phpt
File metadata and controls
57 lines (51 loc) · 1.01 KB
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
--TEST--
Msgpack module info
--SKIPIF--
<?php
if (!extension_loaded("msgpack")) print "skip";
if (!extension_loaded("session")) {
echo "skip needs session enabled";
}
?>
--FILE--
<?php
ob_start();
phpinfo(INFO_MODULES);
$str = ob_get_clean();
$array = explode("\n", $str);
$section = false;
$blank = 0;
foreach ($array as $key => $val)
{
if (strcmp($val, 'msgpack') == 0 || $section)
{
$section = true;
}
else
{
continue;
}
if (empty($val))
{
$blank++;
if ($blank == 3)
{
$section = false;
}
}
echo $val, PHP_EOL;
}
--EXPECTF--
msgpack
MessagePack Support => enabled
Session Support => enabled
MessagePack APCu Serializer ABI => %s
extension Version => %s
header Version => %s
Directive => Local Value => Master Value
msgpack.assoc => %s => %s
msgpack.error_display => %s => %s
msgpack.force_f32 => Off => Off
msgpack.illegal_key_insert => %s => %s
msgpack.php_only => %s => %s
msgpack.use_str8_serialization => %s => %s