summaryrefslogtreecommitdiff
path: root/ext/pcre/tests/bug80866.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pcre/tests/bug80866.phpt')
-rw-r--r--ext/pcre/tests/bug80866.phpt12
1 files changed, 12 insertions, 0 deletions
diff --git a/ext/pcre/tests/bug80866.phpt b/ext/pcre/tests/bug80866.phpt
new file mode 100644
index 0000000000..1de5390cb3
--- /dev/null
+++ b/ext/pcre/tests/bug80866.phpt
@@ -0,0 +1,12 @@
+--TEST--
+Bug #80866 preg_split ignores limit flag when pattern with \K has 0-width fullstring match
+--FILE--
+<?php
+var_export(preg_split('~.{3}\K~', 'abcdefghijklm', 3));
+?>
+--EXPECT--
+array (
+ 0 => 'abc',
+ 1 => 'def',
+ 2 => 'ghijklm',
+)