https://github.com/par7133/fastmysql
FastMySql class, the smart DB class - BSD License
https://github.com/par7133/fastmysql
class db fast fast-to-implement fastmysql opensource php
Last synced: about 1 month ago
JSON representation
FastMySql class, the smart DB class - BSD License
- Host: GitHub
- URL: https://github.com/par7133/fastmysql
- Owner: par7133
- License: bsd-3-clause
- Created: 2020-02-16T19:21:07.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2026-04-04T07:26:20.000Z (2 months ago)
- Last Synced: 2026-04-04T09:30:49.642Z (2 months ago)
- Topics: class, db, fast, fast-to-implement, fastmysql, opensource, php
- Language: PHP
- Homepage: http://numode.eu
- Size: 38.1 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
FastMySql
FastMySql class
@package OpenGallery http://github.com/par7133
@author Daniele Bonini
@version 1.01
@phpver 5.6 to 7.3
@access public
@note You have to declare in your "config.inc" file - or whatever file you
use for the purpose, the following global constants:
define('DB_HOST', "p:your.db.ip.address");
define('DB_USER', "your_dbuser");
define('DB_PASSWORD', "your_dbpassword");
define('DB_DBNAME', "your_db_name");
define('DB_CHARSET', "utf8");
The class makes use of the following global functions:
function array_dim($array)
{
if (is_array(reset($array))) {
$retval = array_dim(reset($array)) + 1;
} else {
$retval = 1;
}
return $retval;
}
function array_keys_count(& $array)
{
return count(array_keys($array));
}
This class makes use of the class FastErr, part of the same
project and developed by me http://github.com/par7133
For any need of software additions, plugins and improvements please write to info@numode.eu
To help please donate by clicking https://gaox.io/l/dona1 and filling the form.
Feedback: code@gaox.io