-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathch3.php
More file actions
373 lines (271 loc) · 5.61 KB
/
ch3.php
File metadata and controls
373 lines (271 loc) · 5.61 KB
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
<?php
/**
*
* Created by PhpStorm.
* User: Tim
* Date: 6-6-2015
* Time: 12:32
*/
include_once('generalIncludes.php');
echo '<input id="chapter" type="hidden" value="3">';
echo "<h2 id='ch3'>Chapter 3 Strings and Patterns</h2>";
echo "<h3 id='numbertypes'>Display an asterisk</h2>";
showcode(<<<'CODE'
echo "\x2a";
CODE
);
showcode(<<<'CODE'
echo "\052";
CODE
);
echo "<p>Sandbox</p>";
showcode(<<<'CODE'
// Try it yourself...
CODE
);
echo "<h3 id='variableinterpolation'>Variable interpolation</h3>";
showcode(<<<'CODE'
$who = "World";
echo "Hello $who\n";
echo 'Hello $who\n';
CODE
);
showcode(<<<'CODE'
$me = 'Davey';
$names = array('Smith', 'Jones', 'Jackson');
echo "There cannot be more than two {$me}s!";
echo "Citation: {$names[1]}[1987]";
CODE
);
echo "<p>Sandbox</p>";
showcode(<<<'CODE'
// Try it yourself...
CODE
);
echo "<h3 id='heredoc'>Heredoc and Nowdoc Syntax</h3>";
echo "<p>Not really useful since HEREDOC and NOWDOC does not work with eval() (yet)</p>";
showcode(<<<'CODE'
$who = "World";
echo <<<TEXT
So I said, "Hello $who"
TEXT;
CODE
);
echo "<p>Not really useful since HEREDOC and NOWDOC does not work with eval() (yet)</p>";
showcode(<<<'CODE'
$who = "World";
echo <<<'TEXT'
So I said, "Hello $who"
TEXT;
CODE
);
showcode(<<<'CODE'
class Hello {
public $greeting = <<<EOT
Hello World
EOT;
}
$hi = new Hello;
echo $hi->greeting;
CODE
);
echo "<p>Sandbox</p>";
showcode(<<<'CODE'
// Try it yourself...
CODE
);
echo "<h3 id='escaping'>Escaping literal values</h3>";
showcode(<<<'CODE'
echo 'This is \'my\' string';
CODE
);
showcode(<<<'CODE'
$a = 10;
echo "The value of \$a is \"$a\".";
CODE
);
showcode(<<<'CODE'
echo "Here's an escaped backslash: - \\ -";
CODE
);
showcode(<<<'CODE'
echo "Here's a literal brace + dollar sign: {\$";
CODE
);
echo "<p>Sandbox</p>";
showcode(<<<'CODE'
// Try it yourself...
CODE
);
echo "<h3 id='working'>Working with Strings</h3>";
showcode(<<<'CODE'
echo strtr('abc', 'a', '1'); // Outputs 1bc
CODE
);
showcode(<<<'CODE'
// Translate multiple-characters
$subst = array(
'1' => 'one',
'2' => 'two',
);
echo strtr('123', $subst); // Outputs onetwo3
CODE
);
showcode(<<<'CODE'
$string = 'abcdef';
echo $string[1]; // Outputs 'b'
CODE
);
showcode(<<<'CODE'
// Scan a string one character at a time
$s = 'abcdef';
for ($i = 0; $i < strlen($s); $i++) {
if ($s[$i] > 'c') {
echo $s[$i];
}
}
CODE
);
echo "<p>Sandbox</p>";
showcode(<<<'CODE'
// Try it yourself...
CODE
);
echo "<h3 id='searching'>Comparing, Searching and Replacing Strings</h3>";
showcode(<<<'CODE'
$string = '123aa';
if ($string == 123) {
echo "This is True";
}
if ($string === 123) {
echo "This is False!";
}
CODE
);
showcode(<<<'CODE'
// strcmp() ,case-sensitive
// strcasecmp() ,case-insensitive
$str = "Hello World";
if (strcmp($str, "hello world") === 0) {
// We won't get here, because of case sensitivity
echo "This is False";
}
if (strcasecmp($str, "hello world") === 0) {
// We will get here, because strcasecmp()
// is case-insensitive
echo "This is True";
}
CODE
);
showcode(<<<'CODE'
$haystack = "abcdefg";
$needle = 'abc';
if (strpos($haystack, $needle) !== false) {
echo 'Found';
}
CODE
);
showcode(<<<'CODE'
$haystack = '123456123456';
$needle = '123';
echo strpos($haystack, $needle) . "\n"; // outputs 0
echo strpos($haystack, $needle, 1); // outputs 6
CODE
);
showcode(<<<'CODE'
$haystack = '123456';
$needle = '34';
echo strstr($haystack, $needle); // outputs 3456
CODE
);
showcode(<<<'CODE'
// Case-insensitive search
echo stripos('Hello World', 'hello') . "\n"; // outputs zero
echo stristr('Hello My World', 'my'); // outputs "My World"
CODE
);
showcode(<<<'CODE'
// Reverse search
echo strrpos('123123', '123'); // outputs 3
CODE
);
showcode(<<<'CODE'
// Outputs Hello Reader
echo str_replace("World", "Reader", "Hello World") . "\n";
// Also outputs Hello Reader
echo str_ireplace("world", "Reader", "Hello World");
CODE
);
showcode(<<<'CODE'
// outputs Bonjour Monde
echo str_replace(
array("Hello", "World"),
array("Bonjour", "Monde"),
"Hello World"
) . "\n";
// outputs Bye Bye
echo str_replace(
array("Hello", "World"),
"Bye",
"Hello World"
);
CODE
);
showcode(<<<'CODE'
// Combining substr_replace() with strpos()
$user = "michael@example.com";
$name = substr_replace($user, "", strpos($user, '@'));
echo "Hello " . $name;
CODE
);
showcode(<<<'CODE'
// Extracting Substrings
$x = '1234567';
echo substr($x, 0, 3) . "\n"; // outputs 123
echo substr($x, 1, 1) . "\n"; // outputs 2
echo substr($x, -2) . "\n"; // outputs 67
echo substr($x, 1) . "\n"; // outputs 234567
echo substr($x, -2, 1); // outputs 6
CODE
);
echo "<p>Sandbox</p>";
showcode(<<<'CODE'
// Try it yourself...
CODE
);
echo "<h3 id='formatting'>Formatting Strings</h3>";
showcode(<<<'CODE'
// number_format() accepts 1, 2 or 4 arguments
echo number_format("100000.698") . "\n"; // Shows 100,001
echo number_format("100000.698", 3, ",", " "); // Shows 100000,698
CODE
);
showcode(<<<'CODE'
// printf() examples
$n = 123;
$f = 123.45;
$s = "A string";
printf("%d", $n); echo "\n"; // prints 123
printf("%d", $f); echo "\n"; // prints 123
// Prints "The string is A string"
printf("The string is %s", $s); echo "\n";
// Example with precision
printf("%3.3f", $f); // prints 123.450
CODE
);
showcode(<<<'CODE'
$name = "Dave Minion";
// Valid if name has one or two parts and only characters
$regex = "/^[a-zA-Z]*\s[a-zA-Z]*/";
if (preg_match($regex, $name)) {
echo "$name = Valid" . "\n";
} else {
echo "$name is not valid, not matching the regex $regex";
}
CODE
);
echo "<p>Sandbox</p>";
showcode(<<<'CODE'
// Try it yourself...
CODE
);