search
HomeBackend DevelopmentPHP TutorialMYSQL common functions in PHP (necessary for operating databases under PHP)_PHP tutorial
MYSQL common functions in PHP (necessary for operating databases under PHP)_PHP tutorialJul 21, 2016 pm 03:34 PM
connectmysqlphpDownfunctionCommonly usedEstablishEssentialoperatedatabaseconnect

1. mysql_connect()-Establish a database connection
Format:
resource mysql_connect([string hostname [:port] [:/path/to/socket] [, string username] [, string password]])
Example:
$conn = @mysql_connect("localhost", "username", "password") or die("Cannot connect to Mysql Server");
Instructions: Use this connection Close the connection that must be displayed

2. mysql_pconnect()-Establish a database connection
Format:
resource mysql_pconnect([string hostname [:port] [:/path/to /socket] [, string username] [, string password]])
Example:
$conn = @mysql_pconnect("localhost", "username", "password") or dir("Cannot connect to Mysql Server ");
Note: Using this connection function does not require explicit closing of the connection. It is equivalent to using a connection pool

3. mysql_close()-Close the database connection
Example:
$conn = @mysql_connect("localhost", "username", "password") or die("Cannot connect to Mysql Server");
@mysql_select_db("MyDatabase") or die("Cannot Select this database, or the database does not exist");
echo "You have connected to the MyDatabase database";
mysql_close();

4. mysql_select_db()-Select database
Format:
boolean mysql_select_db(string db_name [, resource link_id])
Example:
$conn = @mysql_connect("localhost", "username", "password") or die(" Cannot connect to Mysql Server");
@mysql_select_db("MyDatabase") or die("This database cannot be selected, or the database does not exist");

5. mysql_query()-query MySQL
Format:
resource mysql_query (string query, [resource link_id])
Example:
$linkId = @mysql_connect("localhost", "username", "password") or die("Cannot connect to Mysql Server");
@mysql_select_db("MyDatabase") or die("Cannot select this database, or the database does not exist");
$query = "select * from MyTable";
$result = mysql_query($query);
mysql_close();
Explanation: If the SQL query is executed successfully, the resource identifier is returned, and FALSE is returned if it fails. If the update is executed successfully, TRUE is returned, otherwise FALSE is returned

6. mysql_db_query()-query MySQL
format:
resource mysql_db_query(string database, string query [, resource link_id])
Example:
$linkId = @mysql_connect("localhost", "username", "password") or die("Cannot connect to MysqlServer");
$query = "select * from MyTable";
$result = mysql_db_query("MyDatabase", $query);
mysql_close();
Note: In order to make the code clear, it is not recommended to use this function call

7. mysql_result()-Get and display data
Format:
mixed mysql_result (resource result_set, int row [, mixed field])
Example:
$query = "select id, name from MyTable order by name";
$result = mysql_query($query);
for($count=0;$count{
$c_id = mysql_result($result, 0, "id");
$c_name = mysql_result($result, 0, "name");
echo $c_id,$c_name;
}
Description: The simplest and least efficient data acquisition function

8. mysql_fetch_row()-obtain and display data
Format:
array mysql_fetch_row (resource result_set)
Example:
$query = "select id, name from MyTable order by name";
$result = mysql_query($query);
while (list($id, $name) = mysql_fetch_row ($result)) {
echo("Name: $name ($id)
");
}
Description: The function gets the entire data row from result_set and puts the value in in an indexed array. Usually the list() function is used

9. mysql_fetch_array()-get and display data
format:
array mysql_fetch_array (resource result_set [, int result_type])
Example:
$query = "select id, name from MyTable order by name";
$result = mysql_query($query);
while($row = mysql_fetch_array($result, MYSQL_ASSOC) ) {
$id = $row["id"];
$name = $row["name"];
echo "Name: $name ($id)
" ;
}
Another example:
$query = "select id, name from MyTable order by name";
$result = mysql_query($query);
while($row = mysql_fetch_array ($result, MYSQL_NUM)) {
$id = $row[0];
$name = $row[1];
echo "Name: $name ($id)
}
Note:
The values ​​of result_type are:
MYSQL_ASSOC: The field name represents the key, and the field content is the value
MYSQL_NUM: Numeric index array, the operation is the same as the mysql_fetch_ros() function
MYSQL_BOTH: Returned as an associative array and a numerical index array. The default value of result_type.

10. mysql_fetch_assoc() - Get and display data
Format:
array mysql_fetch_assoc (resource result_set)
Equivalent to calling mysql_fetch_array(resource, MYSQL_ASSOC);

11. mysql_fetch_object()-Get and display data
Format:
object mysql_fetch_object(resource result_set)
Example:
$query = "select id, name from MyTable order by name";
while ($row = mysql_fetch_object($result)) {
$id = $row->id;
$name = $row->name;
echo "Name: $name ($id)
";
}
Description: Returns an object, which is the same as mysql_fetch_array() in operation

12. mysql_num_rows()-The number of selected records
Format:
int mysql_num_rows(resource result_set)
Example:
query = "select id, name from MyTable where id > ; 65";
$result = mysql_query($query);
echo "There are ".mysql_num_rows($result)." records with IDs greater than 65";
Note: Only when determining the select query It is only useful when the number of records obtained.

13. mysql_affected_rows() - the number of records affected by Insert, update, delete
Format:
int mysql_affected_rows([resource link_id])
Example :
$query = "update MyTable set name='CheneyFu' where id>=5";
$result = mysql_query($query);
echo "The name with ID greater than or equal to 5 has been updated Number of records: ".mysql_affected_rows();
Description: This function gets the number of rows affected by the INSERT, UPDATE or DELETE update statement

14. mysql_list_dbs() - Get database list information
Format:
resource mysql_list_dbs([resource link_id])
Example:
mysql_connect("localhost", "username", "password");
$dbs = mysql_list_dbs();
echo "Databases:
";
while (list($db) = mysql_fetch_rows($dbs)) {
echo "$db
";
}
Description: Display all database names

15. mysql_db_name()-Get the database name
Format:
string mysql_db_name(resource result_set, integer index)
Description: This function obtains the database name located at the specified index in the result_set returned by mysql_list_dbs()

16. mysql_list_tables() - Gets the database table list
Format:
resource mysql_list_tables(string database [, resource link_id])
Example:
mysql_connect("localhost", "username", "password");
$tables = mysql_list_tables("MyDatabase");
while (list($table) = mysql_fetch_row($tables)) {
echo "$table
";
}
Description: This function gets the tables of all tables in the database Name

17. mysql_tablename()-Get a database table name
Format:
string mysql_tablename(resource result_set, integer index)
Example:
mysql_connect("localhost", "username", "password");
$tables = mysql_list_tables("MyDatabase");
$count = -1;
while (++$count echo mysql_tablename($tables, $count)."
";
}
Description: This function gets the specified index in the result_set returned by mysql_list_tables() Table name

18. mysql_fetch_field()-Get field information
Format:
object mysql_fetch_field(resource result [, int field_offset])
Example:
mysql_connect("localhost", "username", "password");
mysql_select_db("MyDatabase");
$query = "select * from MyTable";
$result = mysql_query($query) ;
$counts = mysql_num_fields($result);
for($count = 0; $count $field = mysql_fetch_field($result, $count);
echo "

$field->name $field->type ($field->max_length)

";
}
Description:
The returned object has a total of 12 object attributes:
name: field name
table: table where the field is located
max_length: the maximum length of the field
not_null: if the field cannot is null, it is 1, otherwise 0
primary_key: If the field is the primary key, it is 1, otherwise 0
unique_key: If the field is the unique key, it is 1, otherwise 0
multiple_key: If the field is Non-unique, 1, otherwise 0
numeric: 1 if the field is numeric, otherwise 0
blob: 1 if the field is BLOB, otherwise 0
type: Data type of the field
unsigned: 1 if the field is an unsigned number, 0 otherwise
zerofill: 1 if the field is "zero filled", otherwise 0

19, mysql_num_fields() -Get the number of fields in the query
Format:
integer mysql_num_fields(resource result_set)
Example:
$query = "select id,name from MyTable order by name";
$result = mysql_query($query);
echo "The number of fields in this query is: ".mysql_num_fields($result)."
";

20, mysql_list_fields ()-Get the field names of all fields in the specified table
Format:
resource mysql_list_fields (string database_name, string table_name [, resource link_id])
Example:
$fields =mysql_list_fields( "MyDatabase", "MyTable");
echo "The number of fields in the table MyTable in the database MyDatabase: ".mysql_num_fields($fields)."
";

21 , mysql_field_flags()-Get the specified field option
Format:
string mysql_field_flags (resource result_set, integer field_offset)
Example:
$query = "select id, name from MyTable order by name";
$result = mysql_query($query);
$row=mysql_fetch_wor($row);

22. mysql_field_len()-Get the maximum length of the specified field
Format:
integer mysql_field_len (resource result_set, integer field_offset)
Example:
$query = "select name from MyTable";
$result = mysql_query($query);
$row = mysql_fetch_row($result);
echo mysql_field_len($result, 0)."
";
Explanation:
If mysql_field_len($reseult, 0) = 16777215
Then numer_format(mysql_field_len($result)) is equal to 16,777,215

23. mysql_field_name()-Get the field name
Format:
string mysql_field_name (resource result_set, int field_offset)
Example:
$query = "select id as PKID, name from MyTable order by name";
$result = mysql_query($query);
$row = mysql_fetch_row($result) ;
echo mysql_field_name($result, 0); // Result: PKID

24. mysql_field_type()-Get field type
Format:
string mysql_field_type ( resource result_set, int field_offset)
Example:
$query = "select id, name from MyTable order by name";
$result = mysql_query($query);
$row = mysql_fetch_row($ result);
echo mysql_field_type($result, 0); // Result: int

25. mysql_field_table()-Get the table name of the field
Format:
string mysql_field_table (resource result_set, int field_offset)
Example:
$query = "select id as PKID, name from MyTable order by name";
$result = mysql_query($query);
$row = mysql_fetch_row($result);
echo mysql_field_table($result, 0); // Result: MyTable

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/322386.htmlTechArticle1. mysql_connect()-Establish database connection format: resource mysql_connect([string hostname [:port] [:/ path/to/socket] [, string username] [, string password]]) Example: $conn = @mys...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

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

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

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

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

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

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

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

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

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

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

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

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

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

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

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

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

MantisBT

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.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version