FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
database/src/Operator.php at master · selective-php/database · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
This repository was archived by the owner on Nov 26, 2022. It is now read-only.
selective-php
/
database
Public archive
Notifications
You must be signed in to change notification settings
Fork
4
Star
23
Code
Pull requests
0
Actions
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
database
/
src
/
Operator.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
45 lines (43 loc) · 1.25 KB
Breadcrumbs
database
/
src
/
Operator.php
Copy path
File metadata and controls
45 lines (43 loc) · 1.25 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
<?php
namespace
Selective
\
Database
;
/**
* Class Operator.
*
* https://dev.mysql.com/doc/refman/5.7/en/non-typed-operators.html
*/
final
class
Operator
{
public
const
EQ
=
'
=
'
;
public
const
NOT_EQ
=
'
<>
'
;
public
const
NOT_EQ_NULL_SAFE
=
'
<=>
'
;
public
const
LT
=
'
<
'
;
public
const
GT
=
'
>
'
;
public
const
GTE
=
'
>=
'
;
public
const
LTE
=
'
<=
'
;
public
const
IS
=
'
is
'
;
public
const
IS_NOT
=
'
is not
'
;
public
const
LIKE
=
'
like
'
;
public
const
NOT_LIKE
=
'
not like
'
;
public
const
SOUNDS_LIKE
=
'
sounds like
'
;
public
const
IN
=
'
in
'
;
public
const
NOT_IN
=
'
not in
'
;
public
const
EXISTS
=
'
exists
'
;
public
const
NOT_EXISTS
=
'
not exists
'
;
public
const
BETWEEN
=
'
between
'
;
public
const
NOT_BETWEEN
=
'
not between
'
;
public
const
REGEXP
=
'
regexp
'
;
public
const
NOT_REGEXP
=
'
not regexp
'
;
public
const
BINARY
=
'
binary
'
;
public
const
CASE
=
'
case
'
;
public
const
PLUS
=
'
+
'
;
public
const
MINUS
=
'
-
'
;
public
const
MULTIPLY
=
'
*
'
;
public
const
DIVIDE
=
'
/
'
;
public
const
DIV
=
'
div
'
;
public
const
RIGHT_SHIFT
=
'
>>
'
;
public
const
LEFT_SHIFT
=
'
<<
'
;
public
const
MOD
=
'
mod
'
;
public
const
AND
=
'
and
'
;
public
const
OR
=
'
or
'
;
public
const
XOR
=
'
xor
'
;
}
Back
|
FazBrowse Home
|
New Git URL