summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/bug49687.phpt
blob: ae191be08815b65137e9d530330d3f8503fc66df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--TEST--
Bug #49687 Several utf8_decode deficiencies and vulnerabilities
--FILE--
<?php

$tests = array(
    "\x41\xC2\x3E\x42",
    "\xE3\x80\x22",
    "\x41\x98\xBA\x42\xE2\x98\x43\xE2\x98\xBA\xE2\x98",
);
foreach ($tests as $t) {
    echo bin2hex(utf8_decode($t)), "\n";
}
echo "Done.\n";
--EXPECT--
413f3e42
3f22
413f3f423f433f3f
Done.