summaryrefslogtreecommitdiff
path: root/ext/pcre/tests/bug42737.phpt
blob: 8d9dd52b31f58ab7c9be0d1bdeb25fb386b25a69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--TEST--
Bug #42737 (preg_split('//u') triggers a E_NOTICE with newlines)
--FILE--
<?php

$string = chr(13).chr(10);

$array = preg_split('//u', $string, - 1, PREG_SPLIT_NO_EMPTY);

var_dump(array_map('ord', $array));

?>
--EXPECT--
array(2) {
  [0]=>
  int(13)
  [1]=>
  int(10)
}