xref: /PHP-7.4/ext/intl/tests/bug62070.phpt (revision 8a4c2f16)
1--TEST--
2Bug #62070: Collator::getSortKey() returns garbage
3--SKIPIF--
4<?php if (!extension_loaded('intl')) die('skip intl extension not enabled'); ?>
5<?php if (version_compare(INTL_ICU_VERSION, '53.1') >=  0) die('skip for ICU < 53.1'); ?>
6--FILE--
7<?php
8$s1 = 'Hello';
9
10$coll = collator_create('en_US');
11$res = collator_get_sort_key($coll, $s1);
12
13echo urlencode($res);
14--EXPECT--
155%2F%3D%3DC%01%09%01%8F%08
16