This repository was archived by the owner on Jun 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSQL.php
More file actions
79 lines (71 loc) · 1.5 KB
/
SQL.php
File metadata and controls
79 lines (71 loc) · 1.5 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
<?php
namespace Kuriv\PHPDesignPatterns\Structural\FluentInterface;
class SQL
{
/**
* Store the fields that need to be queried.
*
* @var array
*/
private array $fields = [];
/**
* Store the table that need to be queried.
*
* @var array
*/
private array $table = [];
/**
* Store the condition that need to be queried.
*
* @var array
*/
private array $condition = [];
/**
* Store the fields that need to be queried.
*
* @param array $fields
* @return SQL
*/
public function select(array $fields): SQL
{
$this->fields = $fields;
return $this;
}
/**
* Store the table that need to be queried.
*
* @param string $table
* @return SQL
*/
public function from(string $table): SQL
{
$this->table[] = $table;
return $this;
}
/**
* Store the condition that need to be queried.
*
* @param string $condition
* @return SQL
*/
public function where(string $condition): SQL
{
$this->condition[] = $condition;
return $this;
}
/**
* Return formatted SQL statement.
*
* @param void
* @return string
*/
public function __toString(): string
{
return sprintf(
'SELECT %s FROM %s WHERE %s',
implode(', ', $this->fields),
implode(', ', $this->table),
implode(', ', $this->condition)
);
}
}