1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/ext/mbstring/tests/mb_strtoupper_basic.phpt
Jorg Adam Sowa 1e02099e6a ext/mbstring: Use internal_encoding INI setting instead of mb_internal_encoding() in tests (#19663)
Moves the usage of `mb_internal_encoding()` to INI section for the tests not testing the encoding/function itself, but the other mbstring/iconv functions.
2025-09-03 11:34:12 +01:00

53 lines
1.2 KiB
PHP

--TEST--
Test mb_strtoupper() function : basic functionality
--EXTENSIONS--
mbstring
--INI--
internal_encoding=utf-8
--FILE--
<?php
/*
* Test basic functionality of mb_strtoupper
*/
echo "*** Testing mb_strtoupper() : basic functionality ***\n";
$ascii_lower = 'abcdefghijklmnopqrstuvwxyz';
$ascii_upper = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
$greek_lower = base64_decode('zrHOss6zzrTOtc62zrfOuM65zrrOu868zr3Ovs6/z4DPgc+Dz4TPhc+Gz4fPiM+J');
$greek_upper = base64_decode('zpHOks6TzpTOlc6WzpfOmM6ZzprOm86czp3Ons6fzqDOoc6jzqTOpc6mzqfOqM6p');
echo "\n-- ASCII String --\n";
$ascii = mb_strtoupper($ascii_lower);
var_dump(base64_encode($ascii));
if($ascii == $ascii_upper) {
echo "Correctly converted\n";
} else {
echo "Incorrectly converted\n";
}
echo "\n-- Multibyte String --\n";
$mb = mb_strtoupper($greek_lower, 'UTF-8');
var_dump(base64_encode($mb));
if ($mb == $greek_upper) {
echo "Correctly converted\n";
} else {
echo "Incorrectly converted\n";
}
echo "Done";
?>
--EXPECT--
*** Testing mb_strtoupper() : basic functionality ***
-- ASCII String --
string(36) "QUJDREVGR0hJSktMTU5PUFFSU1RVVldYWVo="
Correctly converted
-- Multibyte String --
string(64) "zpHOks6TzpTOlc6WzpfOmM6ZzprOm86czp3Ons6fzqDOoc6jzqTOpc6mzqfOqM6p"
Correctly converted
Done