-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbrackets.php
More file actions
86 lines (68 loc) · 1.84 KB
/
Copy pathbrackets.php
File metadata and controls
86 lines (68 loc) · 1.84 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
<?php
class Brackets {
/**
* @var null
* container for brackets
*/
private $brackets = null;
public function __construct(){
$this->prepareBrackets();
return false;
}
/**
* @return string
* validate brackets
*/
public function validate(){
if($this->brackets === null) return $this->getResponse(3);
while ($this->brackets != ''){
$strlen_start = strlen($this->brackets);
$this->brackets = preg_replace('/(\(\)|\[\]|\{\})/', '', $this->brackets);
$strlen_end = strlen($this->brackets);
if($strlen_start == $strlen_end && $this->brackets != '') return $this->getResponse(2);
}
return $this->getResponse(1);
}
/**
* check brackets
*/
private function prepareBrackets(){
if(isset($_GET['brackets'])){
$this->brackets = preg_replace('/[^\(\)\[\]\{\}]/', '', $_GET['brackets']);
}
}
/**
* @param bool $result
* @return string
* returns the colored resulting string
*/
private function getResponse($result){
switch($result){
case 1:
$response = '<span style="color:green">String is correct</span>';
break;
case 2:
$response = '<span style="color:red">String is incorrect</span>';
break;
case 3:
$response = 'Brackets is empty';
break;
}
return $response;
}
}
$brackets = new Brackets();
echo $brackets->validate();
?>
<html>
<head>
</head>
<body>
<form action="">
<br>
<input name="brackets" value="<?=isset($_GET['brackets'])?$_GET['brackets']:'{}{{[[{}]]}[]}'?>" /><br>
<br>
<button>Отправить</button>
</form>
</body>
</html>