forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsplit.phpt
86 lines (81 loc) · 1.33 KB
/
split.phpt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
--TEST--
preg_split()
--FILE--
<?php
var_dump(preg_split());
var_dump(preg_split('/*/', 'x'));
var_dump(preg_split('/[\s, ]+/', 'x yy,zzz'));
var_dump(preg_split('/[\s, ]+/', 'x yy,zzz', -1));
var_dump(preg_split('/[\s, ]+/', 'x yy,zzz', 0));
var_dump(preg_split('/[\s, ]+/', 'x yy,zzz', 1));
var_dump(preg_split('/[\s, ]+/', 'x yy,zzz', 2));
var_dump(preg_split('/\d*/', 'ab2c3u'));
var_dump(preg_split('/\d*/', 'ab2c3u', -1, PREG_SPLIT_NO_EMPTY));
?>
--EXPECTF--
Warning: preg_split() expects at least 2 parameters, 0 given in %ssplit.php on line 3
bool(false)
Warning: preg_split(): Compilation failed: nothing to repeat at offset 0 in %ssplit.php on line 4
bool(false)
array(3) {
[0]=>
string(1) "x"
[1]=>
string(2) "yy"
[2]=>
string(3) "zzz"
}
array(3) {
[0]=>
string(1) "x"
[1]=>
string(2) "yy"
[2]=>
string(3) "zzz"
}
array(3) {
[0]=>
string(1) "x"
[1]=>
string(2) "yy"
[2]=>
string(3) "zzz"
}
array(1) {
[0]=>
string(8) "x yy,zzz"
}
array(2) {
[0]=>
string(1) "x"
[1]=>
string(6) "yy,zzz"
}
array(8) {
[0]=>
string(0) ""
[1]=>
string(1) "a"
[2]=>
string(1) "b"
[3]=>
string(0) ""
[4]=>
string(1) "c"
[5]=>
string(0) ""
[6]=>
string(1) "u"
[7]=>
string(0) ""
}
array(4) {
[0]=>
string(1) "a"
[1]=>
string(1) "b"
[2]=>
string(1) "c"
[3]=>
string(1) "u"
}