1
0
mirror of https://github.com/php/php-src.git synced 2026-04-25 00:48:25 +02:00

MFH: test for bug #42737

This commit is contained in:
Jani Taskinen
2008-08-20 01:11:06 +00:00
parent 81d5bba936
commit 244b57f272
+19
View File
@@ -0,0 +1,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)
}