summaryrefslogtreecommitdiff
path: root/ext/com_dotnet/tests/bug63208.phpt
blob: 67ea9f50f9536ec67622974440f6117f459c48dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
Bug #63208 (BSTR to PHP string conversion not binary safe)
--EXTENSIONS--
com_dotnet
--FILE--
<?php
$string = "\u{0905}b\0cd";
$variant = new VARIANT($string, VT_ARRAY | VT_UI1, CP_UTF8); // Array of bytes
$converted = (string) $variant;
var_dump(bin2hex($string));
var_dump(bin2hex($converted));
?>
--EXPECT--
string(14) "e0a48562006364"
string(14) "e0a48562006364"