summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/strtok_variation4.phpt
blob: 5db1d39650623dd3ab14028da25d591469d4339b (plain)
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
--TEST--
Test strtok() function : usage variations - with embedded nulls in the strings
--FILE--
<?php
/* Prototype  : string strtok ( str $str, str $token )
 * Description: splits a string (str) into smaller strings (tokens), with each token being delimited by any character from token
 * Source code: ext/standard/string.c
*/

/*
 * Testing strtok() : with embedded nulls in the strings
*/

echo "*** Testing strtok() : with embedded nulls in the strings ***\n";

// defining varous strings with embedded nulls
$strings_with_nulls = array(
 		           "\0",
 		           '\0',
                           "hello\0world",
                           "\0hel\0lo",
                           "hello\0",
                           "\0\0hello\tworld\0\0",
                           "\\0he\0llo\\0",
                           'hello\0\0'
                           );

// loop through each element of the array and check the working of strtok()
// when supplied with different string values

$counter = 1;
foreach( $strings_with_nulls as $string )  {
  echo "\n--- Iteration $counter ---\n";
  var_dump( strtok($string, "\0") );
  for($count = 1; $count <= 5; $count++)  {
    var_dump( strtok("\0") );
  }
  $counter++;
}


echo "Done\n";
?>
--EXPECT--
*** Testing strtok() : with embedded nulls in the strings ***

--- Iteration 1 ---
bool(false)
bool(false)
bool(false)
bool(false)
bool(false)
bool(false)

--- Iteration 2 ---
string(2) "\0"
bool(false)
bool(false)
bool(false)
bool(false)
bool(false)

--- Iteration 3 ---
string(5) "hello"
string(5) "world"
bool(false)
bool(false)
bool(false)
bool(false)

--- Iteration 4 ---
string(3) "hel"
string(2) "lo"
bool(false)
bool(false)
bool(false)
bool(false)

--- Iteration 5 ---
string(5) "hello"
bool(false)
bool(false)
bool(false)
bool(false)
bool(false)

--- Iteration 6 ---
string(11) "hello	world"
bool(false)
bool(false)
bool(false)
bool(false)
bool(false)

--- Iteration 7 ---
string(4) "\0he"
string(5) "llo\0"
bool(false)
bool(false)
bool(false)
bool(false)

--- Iteration 8 ---
string(9) "hello\0\0"
bool(false)
bool(false)
bool(false)
bool(false)
bool(false)
Done