1
0
mirror of https://github.com/msgpack/msgpack-c.git synced 2025-03-22 16:33:49 +01:00
2010-12-27 11:09:14 +09:00

46 lines
801 B
PHP

--TEST--
Resource
--SKIPIF--
--FILE--
<?php
if(!extension_loaded('msgpack')) {
dl('msgpack.' . PHP_SHLIB_SUFFIX);
}
error_reporting(0);
function test($type, $variable, $test) {
$serialized = msgpack_serialize($variable);
$unserialized = msgpack_unserialize($serialized);
echo $type, PHP_EOL;
echo bin2hex($serialized), PHP_EOL;
var_dump($unserialized);
echo $test || $unserialized === null ? 'OK' : 'FAIL', PHP_EOL;
}
if (function_exists('curl_init')) {
$test = 'curl';
$res = curl_init('http://php.net/');
} else {
$test = 'dir';
$res = opendir('/tmp');
}
test('resource', $res, false);
switch ($test) {
case 'curl':
curl_close($res);
break;
default:
closedir($res);
break;
}
?>
--EXPECT--
resource
c0
NULL
OK