summaryrefslogtreecommitdiff
path: root/ext/mbstring/tests/bug77367.phpt
blob: 0ba76fd23c14d6815e1a6a38be33be50edc61dfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--TEST--
Bug #77367 (Negative size parameter in mb_split)
--SKIPIF--
<?php
if (!extension_loaded('mbstring')) die('mbstring extension not available');
if (!function_exists('mb_split')) die('mb_split() not available');
?>
--FILE--
<?php
mb_regex_encoding('UTF-8');
var_dump(mb_split("\\w", "\xfc"));
?>
===DONE===
--EXPECT--
array(2) {
  [0]=>
  string(0) ""
  [1]=>
  string(0) ""
}
===DONE===