php-src/ext/mbstring/tests
NathanFreeman fa0401b0b5 Fix GH-9535 (unintended behavior change for mb_strcut in PHP 8.1)
The existing implementation of mb_strcut extracts part of a
multi-byte encoded string by pulling out raw bytes and then running
them through a conversion filter to ensure that the output is valid
in the requested encoding.

If the conversion filter emits error markers when doing the final
'flush' operation which ends the conversion of the extracted bytes,
these error markers may (in some cases) be included in the output.
The conversion operation does not respect the value of
mb_substitute_character; rather, it always uses '?' as an error marker.
So this issue manifests itself as unwanted '?' characters being
inserted into the output.

This issue has existed for a long time, but became noticeable in PHP
8.1 because for at least some of the supported text encodings, mbstring
is now more strict about emitting error markers when strings end in an
illegal state.

The simplest fix is to suppress error markers during the final flush
operation.

While working on a fix for this problem, another problem with mb_strcut
was discovered; since it decides when to stop consuming bytes from
the input by looking at the byte length of its OUTPUT, anything which
causes extra bytes to be emitted to the output may cause mb_strcut to
not consume all the bytes in the requested range.

The one case where we DO emit extra output bytes is for encodings
which have a selectable mode, like ISO-2022-JP; if a string in such
an encoding ends in a mode which is not the default, we emit an ending
escape sequence which changes back to the default mode. This is done
so that concatenating strings in such encodings is safe.

However, as mentioned, this can cause the output of mb_strcut to be
shorter than it logically should be. This bug has existed for a long
time, and fixing it now will be a BC break, so we may not fix it right
away.

Therefore, tests for THIS fix which don't pass because of that OTHER
bug have been split out into a separate test file (gh9535b.phpt), and
that file has been marked XFAIL.
2022-11-13 14:37:55 +02:00
..
data Add test suite for mobile variants of UTF-8 (and fix bugs) 2021-08-30 16:29:58 +02:00
armscii8_encoding.phpt mbstring no longer provides 'long' substitutions for erroneous input bytes 2021-08-31 13:41:34 +02:00
big5_encoding.phpt mbstring no longer provides 'long' substitutions for erroneous input bytes 2021-08-31 13:41:34 +02:00
bug25140.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
bug26639.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
bug30549.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
bug31911.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
bug40685.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
bug43840.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
bug43841.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
bug43993.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
bug43994.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
bug43998.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
bug45239.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
bug45722.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
bug45923.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
bug46806.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
bug46843.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
bug48645.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
bug48697.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
bug49354.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
bug49528.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
bug49536.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
bug52681.phpt Add some missing EXTENSIONS sections to misc tests 2021-06-14 14:52:44 +02:00
bug52981.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
bug54494.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
bug60306.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
bug62934.phpt Port mbstring to use EXTENSIONS 2021-06-11 14:00:43 +02:00
bug63447_001.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
bug63447_002.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
bug63447_003.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
bug65045.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
bug65544.phpt Port mbstring to use EXTENSIONS 2021-06-11 14:00:43 +02:00
bug66797.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
bug66964.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
bug68846.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
bug69079.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
bug69086.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
bug69151.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
bug69267.phpt Port mbstring to use EXTENSIONS 2021-06-11 14:00:43 +02:00
bug71298.phpt Port mbstring to use EXTENSIONS 2021-06-11 14:00:43 +02:00
bug71606.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
bug72164.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
bug72399.phpt Port mbstring to use EXTENSIONS 2021-06-11 14:00:43 +02:00
bug72402.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
bug72691.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
bug72693.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
bug72694.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
bug72710.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
bug73532.phpt Port mbstring to use EXTENSIONS 2021-06-11 14:00:43 +02:00
bug73646.phpt Port mbstring to use EXTENSIONS 2021-06-11 14:00:43 +02:00
bug75944.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
bug76319.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
bug76532.phpt Port mbstring to use EXTENSIONS 2021-06-11 14:00:43 +02:00
bug76704.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
bug76958.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
bug76999.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
bug77025.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
bug77165.phpt Port mbstring to use EXTENSIONS 2021-06-11 14:00:43 +02:00
bug77367.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
bug77370.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
bug77371.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
bug77381.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
bug77418.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
bug77428.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
bug77454.phpt Port mbstring to use EXTENSIONS 2021-06-11 14:00:43 +02:00
bug77514.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
bug78559.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
bug78609.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
bug78633.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
bug79037.phpt Add some missing EXTENSIONS sections to misc tests 2021-06-14 14:52:44 +02:00
bug79149.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
bug79154.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
bug79371.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
bug79441.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
bug79787.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
bug81011.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
bug81298.phpt mb_detect_encoding will not return non-encodings 2021-10-19 18:05:52 +02:00
bug81349.phpt Add EXTENSIONS section 2021-08-11 14:03:18 +02:00
bug81693.phpt Fix #81693: mb_check_encoding(7bit) segfaults 2021-12-03 22:49:47 +01:00
casefold.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
casefolding.phpt Port mbstring to use EXTENSIONS 2021-06-11 14:00:43 +02:00
casemapping.phpt Port mbstring to use EXTENSIONS 2021-06-11 14:00:43 +02:00
common.inc Reindent phpt files 2020-02-03 22:52:20 +01:00
cp850_encoding.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
cp866_encoding.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
cp932_encoding.phpt Reintroduce legacy 'SJIS-win' text encoding in mbstring 2022-08-16 20:18:54 +02:00
cp936_encoding.phpt mbstring no longer provides 'long' substitutions for erroneous input bytes 2021-08-31 13:41:34 +02:00
cp950_encoding.phpt mbstring no longer provides 'long' substitutions for erroneous input bytes 2021-08-31 13:41:34 +02:00
cp1251_encoding.phpt mbstring no longer provides 'long' substitutions for erroneous input bytes 2021-08-31 13:41:34 +02:00
cp1252_encoding.phpt mbstring no longer provides 'long' substitutions for erroneous input bytes 2021-08-31 13:41:34 +02:00
cp1254_encoding.phpt mbstring no longer provides 'long' substitutions for erroneous input bytes 2021-08-31 13:41:34 +02:00
cp5022x_encoding.phpt Add more tests for CP5022{0,1,2} text conversion 2021-08-31 13:41:34 +02:00
cp51932_encoding.phpt mbstring no longer provides 'long' substitutions for erroneous input bytes 2021-08-31 13:41:34 +02:00
empty_pattern.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
encoding_tests.inc Fix conversion of EUC-TW text (and add test suite) 2021-06-29 12:25:21 +02:00
euc_cn_encoding.phpt mbstring no longer provides 'long' substitutions for erroneous input bytes 2021-08-31 13:41:34 +02:00
euc_kr_encoding.phpt mbstring no longer provides 'long' substitutions for erroneous input bytes 2021-08-31 13:41:34 +02:00
euc_tw_encoding.phpt mbstring no longer provides 'long' substitutions for erroneous input bytes 2021-08-31 13:41:34 +02:00
eucjp_2004_encoding.phpt mbstring no longer provides 'long' substitutions for erroneous input bytes 2021-08-31 13:41:34 +02:00
eucjp_encoding.phpt mbstring no longer provides 'long' substitutions for erroneous input bytes 2021-08-31 13:41:34 +02:00
eucjp_ms_encoding.phpt mbstring no longer provides 'long' substitutions for erroneous input bytes 2021-08-31 13:41:34 +02:00
gb18030_encoding.phpt Add another test for GB18030 text conversion 2021-08-31 13:41:34 +02:00
gh7902.phpt Fix GH-7902: mb_send_mail may delimit headers with LF only 2022-01-18 13:08:08 +01:00
gh8208.phpt Merge branch 'PHP-8.0' into PHP-8.1 2022-03-17 17:34:31 +01:00
gh9008.phpt Fix GH-9008: mb_detect_encoding(): wrong results with null $encodings 2022-07-20 16:58:55 +02:00
gh9535.phpt Fix GH-9535 (unintended behavior change for mb_strcut in PHP 8.1) 2022-11-13 14:37:55 +02:00
gh9535b.phpt Fix GH-9535 (unintended behavior change for mb_strcut in PHP 8.1) 2022-11-13 14:37:55 +02:00
gh9683.phpt Add regression test for problem with mb_encode_mimeheader reported as GH-9683 2022-10-10 20:46:12 +09:00
htmlent.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
hz_encoding.phpt mbstring no longer provides 'long' substitutions for erroneous input bytes 2021-08-31 13:41:34 +02:00
illformed_utf_sequences.phpt Error handling for UTF-8 complies with WHATWG specification 2022-04-16 15:04:38 +02:00
ini_encoding.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
ini_encoding2.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
ini_language.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
ini_mbstring_invalid.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
internal_encoding.phpt Port mbstring to use EXTENSIONS 2021-06-11 14:00:43 +02:00
iso2022jp_2004_encoding.phpt mbstring no longer provides 'long' substitutions for erroneous input bytes 2021-08-31 13:41:34 +02:00
iso2022jp_encoding.phpt mbstring no longer provides 'long' substitutions for erroneous input bytes 2021-08-31 13:41:34 +02:00
iso2022jp_kddi_encoding.phpt mbstring no longer provides 'long' substitutions for erroneous input bytes 2021-08-31 13:41:34 +02:00
iso2022jp_ms_encoding.phpt mbstring no longer provides 'long' substitutions for erroneous input bytes 2021-08-31 13:41:34 +02:00
iso2022kr_encoding.phpt mbstring no longer provides 'long' substitutions for erroneous input bytes 2021-08-31 13:41:34 +02:00
iso8859_encodings.phpt mbstring no longer provides 'long' substitutions for erroneous input bytes 2021-08-31 13:41:34 +02:00
koi8r_encoding.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
koi8u_encoding.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_check_encoding.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_check_encoding_array.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_check_encoding_invalid_encodings.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_check_encoding_without_arg.phpt Deprecate calling mb_check_encoding() without argument 2021-07-08 15:34:49 +02:00
mb_chr.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_chr_ord.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_convert_case_various_mode.phpt Port mbstring to use EXTENSIONS 2021-06-11 14:00:43 +02:00
mb_convert_encoding.phpt mb_convert_encoding will not auto-detect input string as UUEncode, Base64, QPrint 2021-12-20 22:09:33 +02:00
mb_convert_encoding_array.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_convert_encoding_array2.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_convert_encoding_basic.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_convert_encoding_empty_encoding_list.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_convert_encoding_failed_detection.phpt Add some missing EXTENSIONS sections to misc tests 2021-06-14 14:52:44 +02:00
mb_convert_encoding_leak.phpt Port mbstring to use EXTENSIONS 2021-06-11 14:00:43 +02:00
mb_convert_encoding_stateful.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_convert_kana.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_convert_variables.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_convert_variables_empty_encoding_list.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_decode_mimeheader_basic.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_decode_mimeheader_variation2.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_decode_mimeheader_variation3.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_decode_numericentity.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_detect_encoding.phpt mb_detect_encoding recognizes all letters in Hungarian alphabet 2022-05-25 08:22:07 +02:00
mb_detect_encoding_empty_encoding_list.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_detect_encoding_incomplete_sequence.phpt Flush filter during non-strict encoding detection 2021-08-27 14:48:32 +02:00
mb_detect_order.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_detect_order_empty_encoding_list.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_encode_mimeheader_basic.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_encode_mimeheader_basic2.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_encode_mimeheader_basic3.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_encode_mimeheader_indent.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_encode_mimeheader_variation6.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_encode_numericentity.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_encoding_aliases.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_ereg-compat-01.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_ereg-compat-02.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_ereg.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_ereg1.phpt Add some missing EXTENSIONS sections to misc tests 2021-06-14 14:52:44 +02:00
mb_ereg2.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
mb_ereg_basic.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_ereg_dupnames.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
mb_ereg_match_basic.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_ereg_named_subpatterns.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
mb_ereg_replace-compat-01.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_ereg_replace-compat-02.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_ereg_replace-compat-03.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_ereg_replace-compat-04.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_ereg_replace-compat-05.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_ereg_replace-compat-06.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_ereg_replace-compat-07.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_ereg_replace-compat-08.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_ereg_replace-compat-09.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_ereg_replace-compat-10.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_ereg_replace-compat-11.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_ereg_replace-compat-12.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_ereg_replace-compat-13.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_ereg_replace.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_ereg_replace_basic.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_ereg_replace_callback.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_ereg_replace_named_subpatterns.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_ereg_replace_variation1.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_ereg_search.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
mb_ereg_search_invalid_pattern.phpt Add some missing EXTENSIONS sections to misc tests 2021-06-14 14:52:44 +02:00
mb_ereg_search_named_subpatterns_1.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
mb_ereg_search_named_subpatterns_2.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
mb_ereg_search_pos.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
mb_ereg_search_regs.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
mb_ereg_search_setpos.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
mb_ereg_search_syntax.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
mb_ereg_search_xxx.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_ereg_variation3.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_ereg_variation4.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_ereg_variation5.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_ereg_variation6.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_ereg_variation7.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_eregi.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
mb_eregi_replace.phpt Migrate SKIPIF -> EXTENSIONS (#7138) 2021-06-11 11:57:42 +02:00
mb_get_info.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_http_input.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_http_input_pass.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_http_output.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_internal_encoding.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_internal_encoding_basic.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_internal_encoding_basic2.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_internal_encoding_error2.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_internal_encoding_ini_basic2.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_internal_encoding_ini_invalid_encoding.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_internal_encoding_variation2.phpt Reintroduce legacy 'SJIS-win' text encoding in mbstring 2022-08-16 20:18:54 +02:00
mb_language.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_list_encodings.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_ord.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_output_handler_euc_jp.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_output_handler_pass.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_output_handler_pattern-01.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_output_handler_pattern-02.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_output_handler_pattern-03.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_output_handler_pattern-04.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_output_handler_pattern-05.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_output_handler_pattern-06.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_output_handler_pattern-07.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_output_handler_pattern-08.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_output_handler_pattern-09.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_output_handler_pattern-10.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_output_handler_pattern-11.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_output_handler_pattern-12.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_output_handler_runtime_ini_alteration-01.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_output_handler_runtime_ini_alteration-02.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_output_handler_shift_jis.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_parse_str.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_parse_str02.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_preferred_mime_name.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_regex_encoding_basic.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_regex_encoding_error2.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_regex_encoding_variation2.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_regex_set_options.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_scrub.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_send_mail01.phpt Add some missing EXTENSIONS sections to misc tests 2021-06-14 14:52:44 +02:00
mb_send_mail02.phpt Add some missing EXTENSIONS sections to misc tests 2021-06-14 14:52:44 +02:00
mb_send_mail03.phpt Add some missing EXTENSIONS sections to misc tests 2021-06-14 14:52:44 +02:00
mb_send_mail04.phpt Add some missing EXTENSIONS sections to misc tests 2021-06-14 14:52:44 +02:00
mb_send_mail05.phpt Add some missing EXTENSIONS sections to misc tests 2021-06-14 14:52:44 +02:00
mb_send_mail06.phpt Add some missing EXTENSIONS sections to misc tests 2021-06-14 14:52:44 +02:00
mb_send_mail07.phpt Add some missing EXTENSIONS sections to misc tests 2021-06-14 14:52:44 +02:00
mb_send_mail_null_bytes.phpt Add some missing EXTENSIONS sections to misc tests 2021-06-14 14:52:44 +02:00
mb_split-compat-01.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_split.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_split_empty_match.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_str_functions_opt-parameter.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_str_split_error_conditions.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_str_split_jp.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_str_split_other.phpt Add test for mb_str_split on UCS-2 text 2021-08-31 13:41:34 +02:00
mb_str_split_ru.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_str_split_utf8_utf16.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_str_unknown_encoding.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_strcut.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_strcut_missing_boundary_check.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strcut_negative_length.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_strimwidth.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_stripos.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_stripos_basic.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_stripos_basic2.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_stripos_empty_needle.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_stripos_error2.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_stripos_invalid_offset.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_stripos_variation5_Bug45923.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_stristr_basic.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_stristr_empty_needle.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_stristr_error2.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_stristr_variation5.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strlen.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_strlen_basic.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strlen_error2.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strlen_variation3.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strpos.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_strpos_basic.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strpos_empty_needle.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strpos_error2.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strpos_invalid_offset.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_strpos_offset_errors.phpt Add some missing EXTENSIONS sections to misc tests 2021-06-14 14:52:44 +02:00
mb_strpos_variation5.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strrchr_basic.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strrchr_empty_needle.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strrchr_error2.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strrchr_variation5.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strrchr_variation6.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strrichr_basic.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strrichr_error2.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strrichr_variation5.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strripos_basic.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strripos_basic2.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strripos_empty_needle.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strripos_error2.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strripos_variation5_Bug45923.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strrpos_basic.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strrpos_empty_needle.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strrpos_error2.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strstr.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_strstr_basic.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strstr_empty_needle.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strstr_error2.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strstr_variation5.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strstr_variation6.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strtolower_basic.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strtolower_error2.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strtolower_variation3.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strtolower_variation4.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strtoupper_basic.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strtoupper_error2.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strtoupper_variation3.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strtoupper_variation4.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_strwidth.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_substitute_character.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_substitute_character_basic.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_substitute_character_variation2.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_substitute_character_variation_strict_types.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_substitute_character_variation_weak_types.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_substr.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_substr_basic.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_substr_count.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mb_substr_count_basic.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_substr_count_error2.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_substr_count_variation4.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_substr_error2.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_substr_variation4.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_substr_variation5.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_substr_variation6.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mb_substr_variation7.phpt Remove unnecessary mbstring skipifs 2021-06-14 15:27:28 +02:00
mbregex_stack_limit.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
mbregex_stack_limit2.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
other_encodings.phpt mb_check_encoding($str, '7bit') rejects strings with bytes over 0x7F 2022-02-22 23:56:56 +02:00
php_gr_jp_10830.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
php_gr_jp_16242.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
php_gr_jp_dev_884-1.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
php_gr_jp_dev_884-2.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
pictogram1.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
retry_limit.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
simpletest.phpt Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
sjis2004_encoding.phpt Restore backwards-compatible mappings of U+005C and U+007E to SJIS-2004 2022-10-05 12:18:38 +09:00
sjis_encoding.phpt Restore backwards-compatible mappings of 0x5C and 0x7E in SJIS 2022-06-10 21:04:36 +02:00
sjis_mobile_encodings.phpt mbstring no longer provides 'long' substitutions for erroneous input bytes 2021-08-31 13:41:34 +02:00
sjismac_encoding.phpt mbstring no longer provides 'long' substitutions for erroneous input bytes 2021-08-31 13:41:34 +02:00
ucs2_encoding.phpt mbstring no longer provides 'long' substitutions for erroneous input bytes 2021-08-31 13:41:34 +02:00
ucs4_encoding.phpt mbstring no longer provides 'long' substitutions for erroneous input bytes 2021-08-31 13:41:34 +02:00
uhc_encoding.phpt mbstring no longer provides 'long' substitutions for erroneous input bytes 2021-08-31 13:41:34 +02:00
utf7imap_encoding.phpt Add more tests for UTF7-IMAP text conversion 2021-08-31 13:41:34 +02:00
utf8_error_handling.phpt Error handling for UTF-8 complies with WHATWG specification 2022-04-16 15:04:38 +02:00
utf8_mobile_encodings.phpt Add more tests for UTF-8 text conversion 2021-08-30 16:29:58 +02:00
utf_encodings.phpt Error handling for UTF-8 complies with WHATWG specification 2022-04-16 15:04:38 +02:00
zend_multibyte-01.phpt Port mbstring to use EXTENSIONS 2021-06-11 14:00:43 +02:00
zend_multibyte-02.phpt Port mbstring to use EXTENSIONS 2021-06-11 14:00:43 +02:00
zend_multibyte-03.phpt Port mbstring to use EXTENSIONS 2021-06-11 14:00:43 +02:00
zend_multibyte-04.phpt Port mbstring to use EXTENSIONS 2021-06-11 14:00:43 +02:00
zend_multibyte-05.phpt Port mbstring to use EXTENSIONS 2021-06-11 14:00:43 +02:00
zend_multibyte-06.phpt Port mbstring to use EXTENSIONS 2021-06-11 14:00:43 +02:00
zend_multibyte-07.phpt Port mbstring to use EXTENSIONS 2021-06-11 14:00:43 +02:00
zend_multibyte-08.phpt Port mbstring to use EXTENSIONS 2021-06-11 14:00:43 +02:00
zend_multibyte-09.phpt Port mbstring to use EXTENSIONS 2021-06-11 14:00:43 +02:00
zend_multibyte-10.phpt Port mbstring to use EXTENSIONS 2021-06-11 14:00:43 +02:00
zend_multibyte-11.phpt Port mbstring to use EXTENSIONS 2021-06-11 14:00:43 +02:00
zend_multibyte-12.phpt Port mbstring to use EXTENSIONS 2021-06-11 14:00:43 +02:00
zend_multibyte-13.phpt Port mbstring to use EXTENSIONS 2021-06-11 14:00:43 +02:00
zend_multibyte-14.phpt Port mbstring to use EXTENSIONS 2021-06-11 14:00:43 +02:00
zend_multibyte-15.phpt Port mbstring to use EXTENSIONS 2021-06-11 14:00:43 +02:00
zend_multibyte-16.phpt Port mbstring to use EXTENSIONS 2021-06-11 14:00:43 +02:00