-
Notifications
You must be signed in to change notification settings - Fork 0
/
Zadachnik_Abramyan_part12 String.php
386 lines (374 loc) · 10 KB
/
Zadachnik_Abramyan_part12 String.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
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
373
374
375
376
377
378
379
380
381
382
383
384
385
386
<?php
/**
* @author Valera
* @copyright 2017
*/
function Stroca1()
{
$C="C";
$C2="acsdc fgrgc gdgdggd âàâì.";
printf($C."<br>");
printf(ord($C)."<br>");
printf(strlen($C2)."<br>");
$N=rand(32,126);
printf("N=".$N."<br>");
printf(chr($N)."<br>");
$C3="g";
$num = ord($C3);
printf("C3=".$C3."<br>");
printf(chr($num+1)."<br>");
$N2=rand(1,26);
for($i = 1; $i<=26; $i++)
print(chr(ord("A")-1+$i));
}
Stroca1();
function Stroca2()
{
print("<br>");
print("******** Stroca2() ************<br>");
$N=rand(32,126);
printf("Nrand=".$N."<br>");
$a=chr($N);
print("a=".$a."<br>");
}
Stroca2();
function Stroca3()
{
print("******** Stroca3() ************<br>");
$N=ord("C");
$N1=chr(--$N);
$N++;
$N0=chr($N);
$N2=chr(++$N);
printf("N=".$N."<br>");
printf("N1=".$N1." N=".$N0." N2=".$N2."<br>");
}
Stroca3();
function Stroca4()
{
print("******** Stroca4() ************<br>");
$N=rand(1,26);
printf("N=".$N."<br>");
for($i=0;$i<=$N;$i++)
{
print(chr(ord("A")-1+$i));
}
print("<br>");
}
Stroca4();
function Stroca5()
{
print("******** Stroca5() ************<br>");
$N=rand(1,26);
printf("N=".$N."<br>");
for($i=0;$i<=$N;$i++)
{
print(chr(ord("z")-1-$i));
}
print("<br>");
}
Stroca5();
function Stroca6()
{
print("******** Stroca6() ************<br>");
$var=rand(1,3);
switch($var)
{
case 1: $symbol="C";
break;
case 2: $symbol="Ñ";
break;
case 3: $symbol=7;
break;
default: print("Error.<br>");
}
print("var=".$var." symbol=".$symbol."<br>");
print("ord()=".ord($symbol)."<br>");
if(ord($symbol)>=48 && ord($symbol)<=57)
print("Symbol is digit");
elseif(ord($symbol)>=65 && ord($symbol)<=122)
print("Symbol is lat.<br>");
elseif(ord($symbol)>=128 && ord($symbol)<=207)
print("Symbol is rus.<br>");
else print("Symbol is something else.<br>");
print("<br>");
}
Stroca6();
function Stroca7()
{
print("******** Stroca7() ************<br>");
$str="Ñààêàøâèëè âûñòóïàë íà ìèòèíãå ïåðåä ðàäîé";
//print($str."<br>");
$size=strlen($str)-1;
print($size."<br>");
print($str[0]."<br>");
print($str[$size]."<br>");
}
Stroca7();
function Stroca8()
{
print("******** Stroca8() ************<br>");
$n=rand(4,13);
$symbol="C";
for($i=0;$i<$n;$i++)
{
print($symbol."<br>");
}
}
Stroca8();
function Stroca9()
{
print("******** Stroca9() ************<br>");
$n=12;
$c1='t';
$c2='r';
for($i=0;$i<$n/2;$i++)
{
print($c1.$c2);
}
print("<br>");
}
Stroca9();
function Stroca10()
{
print("******** Stroca10() ************<br>");
$str="Ñààêàøâèëè âûñòóïàë íà ìèòèíãå ïåðåä ðàäîé.";
print($str."<br>");
for($i=strlen($str)-1;$i>=0;$i--)
{
print($str[$i]);
}
print("<br>");
print(strrev($str)."<br>");
}
Stroca10();
function Stroca11()
{
print("******** Stroca11() ************<br>");
$str="Ñààêàøâèëè âûñòóïàë íà ìèòèíãå ïåðåä ðàäîé.";
$flag=" ";
print($str."<br>");
print($flag."<br>");
//print($str[0]);
for($i=0;$i<strlen($str);$i++)
{
print(" ".$str[$i]);
}
print("<br>");
}
Stroca11();
function Stroca12()
{
print("******** Stroca12() ************<br>");
$n=rand(3,7);
print("n=".$n."<br>");
$str="Ñààêàøâèëè âûñòóïàë íà ìèòèíãå ïåðåä ðàäîé.";
$flag="*";
print($str."<br>");
$stars = "";
for($i=0;$i<$n;$i++)
{
$stars.=$flag;
}
for($i=0;$i<strlen($str);$i++)
{
print($stars.$str[$i]);
}
print("<br>");
}
Stroca12();
function Stroca13()
{
print("******** Stroca13() ************<br>");
$str="Ñààêàøâèëè 13 âûñòóïàë íà ìèòèíãå ïåðåä 1-é ðàäîé.";
print($str."<br>");
$counter=0;
for($i=0;$i<strlen($str);$i++)
{
if(ctype_digit($str[$i]))
{
$counter++;
}
}
print(" Âñåãî ".$counter." öèôð â ñòðîêå.<br>");
}
Stroca13();
function Stroca14()
{
print("******** Stroca14() ************<br>");
$str="Ñààêàøâèëè 13 âûñòóïàë íà ìèòèíãå ïåðåä 1-é ðàäîé. Helloween Hey Lord!";//Megadeth Holy Wars.
print($str."<br>");// [97,122] a,b,c,...,z
$counter=0;//[65,90] A,B,C,...,Z
for($i=0;$i<strlen($str);$i++)//[128,159] À,Á,Â,...,ß ***MS-DOS
{
if(ord($str[$i])>=65 && ord($str[$i])<=90)//[224,255] à,á,â,...,ÿ ***MS-Windows
{
$counter++;//[160,175] à,á,â,...,ï ***MS-DOS
}
}
print(" Âñåãî ".$counter." ïðîïèñíûõ ëàòèíñêèõ áóêâ â ñòðîêå.<br>");//[192,223] À,Á,Â,...,ß ***MS-Windows
}
Stroca14();
function Stroca15()
{
print("******** Stroca15() ************<br>");
$str="Ñààêàøâèëè 13 âûñòóïàë íà ìèòèíãå ïåðåä 1-é ðàäîé. Helloween Hey Lord!";//Megadeth Holy Wars.
print($str."<br>");// [97,122] a,b,c,...,z
$counter=0;//[65,90] A,B,C,...,Z
for($i=0;$i<strlen($str);$i++)//[128,159] À,Á,Â,...,ß ***MS-DOS
{
if((ord($str[$i])>=97 && ord($str[$i])<=122) || (ord($str[$i])>=224 && ord($str[$i])<=255))//[224,255] à,á,â,...,ÿ ***MS-Windows
{
$counter++;//[160,175] à,á,â,...,ï ***MS-DOS
}
}
print(" Âñåãî ".$counter." ñòðî÷íûõ ëàòèíñêèõ è ðóññêèõ áóêâ â ñòðîêå.<br>");//[192,223] À,Á,Â,...,ß ***MS-Windows
print(" Âñåãî ñèìâîëîâ â ñòðîêå: ".strlen($str)."<br>");
}
Stroca15();
function Stroca16()
{
print("******** Stroca16() ************<br>");
$str="Megadeth Holy Wars. Helloween Hey Lord!";
print($str."<br>");
print(strtolower($str)."<br>");
}
Stroca16();
function Stroca17()
{
print("******** Stroca17() ************<br>");
$str="Megadeth Holy Wars. Helloween Hey Lord!";
print($str."<br>");
print(strtoupper($str)."<br>");
}
Stroca17();
function strtolower_utf8($string){
$convert_to = array(
"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u",
"v", "w", "x", "y", "z", "a", "a", "a", "a", "a", "a", "?", "c", "e", "e", "e", "e", "i", "i", "i", "i",
"?", "n", "o", "o", "o", "o", "o", "o", "u", "u", "u", "u", "y", "à", "á", "â", "ã", "ä", "å", "¸", "æ",
"ç", "è", "é", "ê", "ë", "ì", "í", "î", "ï", "ð", "ñ", "ò", "ó", "ô", "õ", "ö", "÷", "ø", "ù", "ú", "û",
"ü", "ý", "þ", "ÿ"
);
$convert_from = array(
"A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U",
"V", "W", "X", "Y", "Z", "A", "A", "A", "A", "A", "A", "?", "C", "E", "E", "E", "E", "I", "I", "I", "I",
"?", "N", "O", "O", "O", "O", "O", "O", "U", "U", "U", "U", "Y", "À", "Á", "Â", "Ã", "Ä", "Å", "¨", "Æ",
"Ç", "È", "É", "Ê", "Ë", "Ì", "Í", "Î", "Ï", "Ð", "Ñ", "Ò", "Ó", "Ô", "Õ", "Ö", "×", "Ø", "Ù", "Ú", "Ú",
"Ü", "Ý", "Þ", "ß"
);
return str_replace($convert_from, $convert_to, $string);
}
function strtoupper_utf8($string){
$convert_to = array(
"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u",
"v", "w", "x", "y", "z", "a", "a", "a", "a", "a", "a", "?", "c", "e", "e", "e", "e", "i", "i", "i", "i",
"?", "n", "o", "o", "o", "o", "o", "o", "u", "u", "u", "u", "y", "à", "á", "â", "ã", "ä", "å", "¸", "æ",
"ç", "è", "é", "ê", "ë", "ì", "í", "î", "ï", "ð", "ñ", "ò", "ó", "ô", "õ", "ö", "÷", "ø", "ù", "ú", "û",
"ü", "ý", "þ", "ÿ"
);
$convert_from = array(
"A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U",
"V", "W", "X", "Y", "Z", "A", "A", "A", "A", "A", "A", "?", "C", "E", "E", "E", "E", "I", "I", "I", "I",
"?", "N", "O", "O", "O", "O", "O", "O", "U", "U", "U", "U", "Y", "À", "Á", "Â", "Ã", "Ä", "Å", "¨", "Æ",
"Ç", "È", "É", "Ê", "Ë", "Ì", "Í", "Î", "Ï", "Ð", "Ñ", "Ò", "Ó", "Ô", "Õ", "Ö", "×", "Ø", "Ù", "Ú", "Ú",
"Ü", "Ý", "Þ", "ß"
);
return str_replace($convert_to,$convert_from, $string);
}
function Stroca18()
{
print("******** Stroca18() ************<br>");
$str="Ñààêàøâèëè 13 âûñòóïàë íà ìèòèíãå ïåðåä 1-é ðàäîé. Megadeth Holy Wars. Helloween Hey Lord!";
print($str."<br>");
print(ctype_upper($str)."<br>");
//print(strtolower($str)."<br>");
$strings = array('AKLWC139', 'LMNSDO', 'akwSKWsm');
echo "<pre>";
print_r($strings);
echo "</pre>";
for($i=0;$i<strlen($str);$i++)
{
if(ctype_upper($str[$i]))
{
print(strtolower_utf8($str[$i]));
}
else
print(strtoupper_utf8($str[$i]));
}
print("<br>");
foreach ($strings as $testcase) {
/**if (ctype_upper($testcase))
{
echo "The string $testcase consists of all uppercase letters.\n";
}
else
{
echo "The string $testcase does not consist of all uppercase letters.\n";
}
print("<br>");
*/
}
}
Stroca18();
function Stroca19()
{
print("******** Stroca19() ************<br>");
$n=7*lcg_value();
$str="$n";
print($str."<br>");
if(ctype_digit($str))
print("1 (int)<br>");
else print("2 (float)<br>");
$strings = array('1820.20', '10002', 'wsl!12');
foreach ($strings as $testcase)
{
if (ctype_digit($testcase))
{
echo "Ñòðîêà $testcase ñîñòîèò òîëüêî èç öèôð.\n";
}
else
{
echo "Ñòðîêà $testcase íå ñîñòîèò òîëüêî èç öèôð.\n";
}
}
print("<br>");
}
Stroca19();
class forString
{
public function forS()
{
print('MyClass class has initialized !');
print("<br>");
}
}
$obj=new forString();
$obj->forS();
class forString2
{
public $name;
public function forName()
{
print("Hello All, I am ".$this->name."<br>");
}
}
$obj=new forString2;
$obj->name="Someone";
$obj->forName();
class FactorialCounter
{
public $n;
public function factorial($x)
{
$fac=1;
for($i=$x;$i>0;$i--)
{
$fac*=$i;
}
print($x."!=".$fac."<br>");
}
}
$obj=new FactorialCounter;
$obj->factorial(7);
?>