ezSQL download address:
Download: ezSQL
The new version is 2.05, which adds a lot of support, including CodeIgniter, MSSQL, PDO, etc.
I have also written for CodeIgniter once before, but it only supports MySQL
Look at the usage examples
In fact, it is not difficult, just look at the source code. The main reason is that the programming idea is very good.
Example 1
--------------------------------------- -------------
// Select multiple records from the database and print them out..
$users = $db->get_results("SELECT name, email FROM users");
foreach ( $users as $user ) {
// Access data using object syntax
echo $user->name;
echo $user->email;
}
Example 2
----------------------------------------- ----------------
// Get one row from the database and print it out..
$user = $db->get_row("SELECT name ,email FROM users WHERE id = 2");
echo $user->name;
echo $user->email;
Example 3
--------- ---------------------------------------------
/ / Get one variable from the database and print it out..
$var = $db->get_var("SELECT count(*) FROM users");
echo $var;
Example 4
------------------------------------------------ ----
// Insert into the database
$db->query("INSERT INTO users (id, name, email) VALUES (NULL,'justin','jv@foo. com')");
Example 5
---------------------------------------- ----------------
// Update the database
$db->query("UPDATE users SET name = 'Justin' WHERE id = 2 )");
Example 6
----------------------------------------- ----------------
// Display last query and all associated results
$db->debug();
Example 7
- -------------------------------------------------- -
// Display the structure and contents of any result(s) .. or any variable
$results = $db->get_results("SELECT name, email FROM users");
$db->vardump($results);
Example 8
-------------------------------- -----------------------
// Get 'one column' (based on column index) and print it out..
$names = $db->get_col("SELECT name,email FROM users",0)
foreach ( $names as $name ) {
echo $name;
}
Example 9
------------------------------------------------ ----
// Same as above 'but quicker'
foreach ( $db->get_col("SELECT name,email FROM users",0) as $name ) {
echo $name;
}
Example 10
---------------------------------- ------------------
// Map out the full schema of any given database and print it out..
$db->select ("my_database");
foreach ( $db->get_col("SHOW TABLES",0) as $table_name ) {
$db->debug();
$db-> get_results("DESC $table_name");
}
$db->debug();
EZSQL class introduction:
ezsql is a small and fast database operation Class allows you to easily operate various databases (MySQL, oracle8/9, interbase, FireBird, PostgreSQL, MS-SQL, sqlite, sqlite C++) with PHP.
Include a PHP file at the beginning of your script. You can then use a smaller, easier set of ezsql functions in place of the standard PHP database functions.
It automatically caches query results, provides a series of simple function operations and extensions, and does not cause additional server overhead
It has excellent debugging functions, allowing you to quickly judge the execution process of SQL statements
The results returned by ezsql functions are objects, associative arrays, or numeric arrays
It can greatly shorten development time, and in most cases, will simplify your code, making it run faster, as well as easily Debug and optimize your database queries.
This is a small category that doesn’t add a lot of overhead to your website.The
class has the following methods:
- $db->get_results – Read the data set from the database (or previously cached data set)
- $db->get_row — Read a piece of data from the database (or previously cached data)
- $db->get_col – Read a column of specified data set from the database (or previously cached data set)
- $db-> ;get_var — Read a value from the database data set (or previously cached data)
- $db->query — Execute a sql statement (if there is data, cache it)
- $db-> ;debug – Print the last executed SQL statement and the returned result (if there is a result)
- $db->vardump – Print the structure and content of the variable
- $db->select — Select a new database
- $db->get_col_info – Get column information
- $db->donation – Donate money to the author
- $db->escape – Format strings inserted into the database , eg: mysql_escape_string(stripslashes($str))
- $db->flush – clear cache
- $db->get_cache – exchange for cache
- $db->hide_errors – hide errors
- $db->register_error – Register errors
- $db->show_errors – Show errors
- $db->store_cache – Store to cache
- $db->sysdate – Get system time
- $db = new db — Create a new db object.
wordpress has modified ezsql, and also made it only applicable to mysql
wordpress modified Some types of operations are functions as follows:
function query($query)
This function is the most basic function of WPDB. $query is an SQL statement, which is submitted to the database for query. The results are divided into two situations:
1. If it is "insert|delete|update|replace", return the number of affected rows. In the case of "insert|replace", use $this->insert_id to record the newly inserted ID.
2. If it is "select", use $this->last_result to record the query result set and return the number of rows of records found.
function escape($string)
Use backslashes to quote strings, that is, use magic quotes.
function insert($table, $data)
This is the insert record function. The first parameter is the field array of the table, and the second is the data array. Returns 1 when inserting data, 0 otherwise.
function update($table, $data, $where)
This is the update record function. The first parameter is the field array of the table, the second is the data array, and the third is the condition array. , it is a nane array. It is 1 if updated, 0 otherwise.
function get_var($query=null, $x = 0, $y = 0)
If $query is not empty, first execute the query and then return the value of column X and row Y.
function get_row($query = null, $output = OBJECT, $y = 0)
Returns a row, $outpu specifies the return type, which can be ARRAY_A, ARRAY_N or OBJECT. $y specifies the row number.
function get_col($query = null, $x = 0)
Returns a column, $x specifies which column.
function get_results($query = null, $output = OBJECT)
Returns the query result set, which can be returned in three ways: ARRAY_A, ARRAY_N or OBJECT.
function get_col_info($info_type = ‘name’, $col_offset = -1)
Return field information.
There are some other functions, which I won’t go into details here. There are also two global variables, SAVEQUERIES and WP_DEBUG. The first one allows you to save the queries executed by the accessed page into the $this->queries array for later use in debugging. WP_DEBUG allows you to save the queries executed by the visited page. Error output. Both of these are not turned on by default. You can turn them on in wp_config.php when testing.

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Notepad++7.3.1
Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Mac version
God-level code editing software (SublimeText3)
