Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
PHP-MySQLi-Database-Class
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
PHP-MySQLi-Database-Class
Commits
b0d971fc
Commit
b0d971fc
authored
Apr 29, 2014
by
Alexander Butenko
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4 from screeper/master
Added update "column = !column"
parents
bc5116f8
231fa1dc
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
1 deletion
+15
-1
MysqliDb.php
MysqliDb.php
+12
-0
readme.md
readme.md
+3
-1
No files found.
MysqliDb.php
View file @
b0d971fc
...
@@ -477,6 +477,10 @@ class MysqliDb
...
@@ -477,6 +477,10 @@ class MysqliDb
}
}
}
}
break
;
break
;
case
'[N]'
:
if
(
$val
==
null
)
$this
->
_query
.=
"!"
.
$column
.
", "
;
else
$this
->
_query
.=
"!"
.
$val
.
", "
;
break
;
default
:
default
:
die
(
"Wrong operation"
);
die
(
"Wrong operation"
);
}
}
...
@@ -754,6 +758,14 @@ class MysqliDb
...
@@ -754,6 +758,14 @@ class MysqliDb
return
Array
(
"[I]"
=>
"-"
.
(
int
)
$num
);
return
Array
(
"[I]"
=>
"-"
.
(
int
)
$num
);
}
}
/**
* Method generates change boolean function call
* @param string column name. null by default
*/
public
function
not
(
$col
=
null
)
{
return
Array
(
"[N]"
=>
(
string
)
$col
);
}
/**
/**
* Method generates user defined function call
* Method generates user defined function call
* @param string user function body
* @param string user function body
...
...
readme.md
View file @
b0d971fc
...
@@ -49,8 +49,10 @@ if($id)
...
@@ -49,8 +49,10 @@ if($id)
$data
=
Array
(
$data
=
Array
(
'firstName'
=>
'Bobby'
,
'firstName'
=>
'Bobby'
,
'lastName'
=>
'Tables'
,
'lastName'
=>
'Tables'
,
'editCount'
=>
$db
->
inc
(
2
)
'editCount'
=>
$db
->
inc
(
2
)
,
// editCount = editCount + 2;
// editCount = editCount + 2;
'editBoolean'
=>
$db
->
not
()
// editBoolean = !editBoolean;
);
);
$db
->
where
(
'id'
,
1
);
$db
->
where
(
'id'
,
1
);
if
(
$db
->
update
(
'users'
,
$data
))
echo
'successfully updated'
;
if
(
$db
->
update
(
'users'
,
$data
))
echo
'successfully updated'
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment