Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
--TEST-- Regression: sort_wsk() eq but different len. --EXTENSIONS-- intl --FILE-- <?php /..
Decoded Output download
--TEST--
Regression: sort_wsk() eq but different len.
--EXTENSIONS--
intl
--FILE--
<?php
/*
* Test sorting strings that have different length but otherwise equal.
*/
function sort_using_locale( $locale, $test_array )
{
$coll = ut_coll_create( $locale );
// Sort array.
ut_coll_sort_with_sort_keys( $coll, $test_array );
// And return the sorted array.
return dump( $test_array ) . "
";
}
function ut_main()
{
$res_str = '';
// Define a couple of arrays.
// Each array contains equal strings that differ only in their length.
$a1 = array( 'aa', 'aaa', 'a' );
$a2 = array( '', '', '' );
// Sort them.
$res_str .= sort_using_locale( 'en_US', $a1 );
$res_str .= sort_using_locale( 'ru_RU', $a2 );
return $res_str;
}
require_once( 'ut_common.inc' );
ut_run();
?>
--EXPECT--
array (
0 => 'a',
1 => 'aa',
2 => 'aaa',
)
array (
0 => '',
1 => '',
2 => '',
)
Did this file decode correctly?
Original Code
--TEST--
Regression: sort_wsk() eq but different len.
--EXTENSIONS--
intl
--FILE--
<?php
/*
* Test sorting strings that have different length but otherwise equal.
*/
function sort_using_locale( $locale, $test_array )
{
$coll = ut_coll_create( $locale );
// Sort array.
ut_coll_sort_with_sort_keys( $coll, $test_array );
// And return the sorted array.
return dump( $test_array ) . "\n";
}
function ut_main()
{
$res_str = '';
// Define a couple of arrays.
// Each array contains equal strings that differ only in their length.
$a1 = array( 'aa', 'aaa', 'a' );
$a2 = array( '', '', '' );
// Sort them.
$res_str .= sort_using_locale( 'en_US', $a1 );
$res_str .= sort_using_locale( 'ru_RU', $a2 );
return $res_str;
}
require_once( 'ut_common.inc' );
ut_run();
?>
--EXPECT--
array (
0 => 'a',
1 => 'aa',
2 => 'aaa',
)
array (
0 => '',
1 => '',
2 => '',
)
Function Calls
None |
Stats
MD5 | 337a520eba6c7ce895ea81bf66c529c4 |
Eval Count | 0 |
Decode Time | 92 ms |