-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.php
143 lines (103 loc) · 3.1 KB
/
test.php
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<?php
//
// ECHO BENCH
//
$str1 = str_repeat('a', 100);
$str2 = str_repeat('b', 100);
$str3 = str_repeat('c', 100);
$str4 = str_repeat('d', 1000);
$str5 = str_repeat('e', 1000);
$str6 = str_repeat('f', 1000);
$str7 = str_repeat('g', 10000);
$str8 = str_repeat('h', 10000);
$str9 = str_repeat('i', 10000);
//
// TEST 1
//
$mark = microtime(true);
for($i = 0; $i < 1000; $i++) {
ob_start();
for($j = 0; $j < 1000; $j++) echo $str1, $str2, $str3;
ob_get_clean();
}
echo 'test 1: 1.000.000 x echo $str1, $str2, $str3 = ', microtime(true) - $mark, ' sec', "\n";
//
// TEST 2
//
$mark = microtime(true);
for($i = 0; $i < 1000; $i++) {
ob_start();
for($j = 0; $j < 1000; $j++) echo $str1 . $str2 . $str3;
ob_get_clean();
}
echo 'test 2: 1.000.000 x echo $str1 . $str2 . $str3 = ', microtime(true) - $mark, ' sec', "\n";
//
// TEST 3
//
$mark = microtime(true);
for($i = 0; $i < 1000; $i++) {
ob_start();
for($j = 0; $j < 1000; $j++) echo "$str1$str2$str3";
ob_get_clean();
}
echo 'test 3: 1.000.000 x echo "$str1$str2$str3" = ', microtime(true) - $mark, ' sec', "\n";
//
// TEST 4
//
$mark = microtime(true);
for($i = 0; $i < 1000; $i++) {
ob_start();
for($j = 0; $j < 1000; $j++) echo $str1, $str2, $str3, $str4, $str5, $str6;
ob_get_clean();
}
echo 'test 4: 1.000.000 x echo $str1, $str2, $str3, $str4, $str5, $str6 = ', microtime(true) - $mark, ' sec', "\n";
//
// TEST 5
//
$mark = microtime(true);
for($i = 0; $i < 1000; $i++) {
ob_start();
for($j = 0; $j < 1000; $j++) echo $str1 . $str2 . $str3 . $str4 . $str5 . $str6;
ob_get_clean();
}
echo 'test 5: 1.000.000 x echo $str1 . $str2 . $str3 . $str4 . $str5 . $str6 = ', microtime(true) - $mark, ' sec', "\n";
//
// TEST 6
//
$mark = microtime(true);
for($i = 0; $i < 1000; $i++) {
ob_start();
for($j = 0; $j < 1000; $j++) echo "$str1$str2$str3$str4$str5$str6";
ob_get_clean();
}
echo 'test 6: 1.000.000 x echo "$str1$str2$str3$str4$str5$str6" = ', microtime(true) - $mark, ' sec', "\n";
//
// TEST 7
//
$mark = microtime(true);
for($i = 0; $i < 1000; $i++) {
ob_start();
for($j = 0; $j < 1000; $j++) echo $str1, $str2, $str3, $str4, $str5, $str6, $str7, $str8, $str9;
ob_get_clean();
}
echo 'test 7: 1.000.000 x echo $str1, $str2, $str3, $str4, $str5, $str6, $str7, $str8, $str9 = ', microtime(true) - $mark, ' sec', "\n";
//
// TEST 8
//
$mark = microtime(true);
for($i = 0; $i < 1000; $i++) {
ob_start();
for($j = 0; $j < 1000; $j++) echo $str1 . $str2 . $str3 . $str4 . $str5 . $str6 . $str7 . $str8 . $str9;
ob_get_clean();
}
echo 'test 8: 1.000.000 x echo $str1 . $str2 . $str3 . $str4 . $str5 . $str6 . $str7 . $str8 . $str9 = ', microtime(true) - $mark, 'sec', "\n";
//
// TEST 9
//
$mark = microtime(true);
for($i = 0; $i < 1000; $i++) {
ob_start();
for($j = 0; $j < 1000; $j++) echo "$str1$str2$str3$str4$str5$str6$str7$str8$str9";
ob_get_clean();
}
echo 'test 9: 1.000.000 x echo "$str1$str2$str3$str4$str5$str6$str7$str8$str9" = ', microtime(true) - $mark, ' sec', "\n";