1.0.0
1.0.0.0Simple PHP class for doing standard MySQL actions.
MIT
Wallogit.com
2017 © Pedro Peláez
Simple PHP class for doing standard MySQL actions.
Database.php is a simple PHP class for doing standard MySQL actions, such as selecting, inserting, updating and deleting database rows. It also includes some nice functionality, like auto-escaping to protect your database from malicious code and automatic serializing of arrays., (*1)
Initiate a database connection using by creating a new Database() object., (*2)
require_once('Database.php');
$db = new Database($database_name, $username, $password, $host); // $host is optional and defaults to 'localhost'
Select rows from a database table, (*3)
Usage:, (*4)
$db->select($table, $where, $limit, $order, $where_mode, $select_fields)
Arguments:, (*5)
$table - name of the table to select from$where - array or string holding the filters/'WHERE' clause for the query$limit - integer or string holding the 'LIMIT' clause$order - string holding the 'ORDER BY' clause$where_mode - whether to add an 'AND' or 'OR' after each item in the $where array, defaults to AND
$select_fields - the fields to select (SELECT FROM ...), defaults to *
Example:, (*6)
// get the first 10 candy bars that are sweet, and order them by amount
$db->select('candy', array('sweet' => 1, 'spicy' => 0), 10, 'amount DESC');
// get the ids 1, 2,5,9 from products
$db->select('products', array('id' => 'in (1,2,5,9)'), false, false,'OR');
Reading the results can be done with the following functions:, (*7)
$db->count() returns the number of selected rows, equal to mysql_num_rows(), (*8)
$db->row() returns the first row that matches the query as an array, (*9)
$db->result() returns all matches rows as an array containing row objects, (*10)
$db->result_array() returns all matches rows as an array containing row arrays, (*11)
$db->row_array() returns the first row that matches the query as an object (stdClass)Please note that you can call any of these functions also directly after the $db->select() call, like shown below:, (*12)
echo $db->select('candy', array('sweet' => 1), 10)->count();
There are a few other methods available for queries that might come in handy:, (*13)
$db->sql() returns the sql query that was last executedInsert data into a database table, (*14)
Usage:, (*15)
$db->insert($table, $fields=array())
Example:, (*16)
$db->insert(
'candy',
array(
'name' => 'Kitkat original',
'sweet' => 1,
'spicey' => 0,
'brand' => 'Kitkat',
'amount_per_pack' => 4
)
);
Tip! You can call $db->id() immeadiately after a $db->insert() call to get the ID of the last inserted row., (*17)
Update one or more rows of a database table, (*18)
Usage:, (*19)
$db->update($table, $fields=array(), $where=array())
If you need to set a value based on a formula, ex. {previousValue} + 1, end the field name with an exclamation mark (!), ex: 'amount!' => 'amount - 100', (*20)
Example:, (*21)
// Move an employee to another department and update their positions count
$db->update(
'employees',
array( // fields to be updated
'department' => 'IT',
'positions!' => 'positions + 1' //Note the exclamation mark (!) at the end
),
array( // 'WHERE' clause
'id' => '815'
)
);
Remove one or more rows from a database table, (*22)
Usage:, (*23)
$db->delete($table, $where=array())
Example:, (*24)
// delete all Kitkat candy
$db->delete(
'candy',
array( // 'WHERE' clause
'brand' => 'Kitkat'
)
);
Access the database instance outside the global scope after initializing it, (*25)
Usage:, (*26)
$my_db = Database::instance();
Example:, (*27)
// Global scope
$db = new Database($database_name, $username, $password, $host);
// Function scope
function something(){
// We could simply use `global $db;`, but using globals is bad. Instead we can do this:
$db = Database::instance();
// And now we have access to $db inside the function
}
Simple PHP class for doing standard MySQL actions.
MIT