Convert php query data table to array
When using MySQL as the database in PHP, it is often necessary to convert the queried data table data into array format. This method is very common because arrays are one of the commonly used data types in PHP, and when writing query code, you often need to use PHP arrays for data processing and conversion.
Below, we will introduce a simple method to convert query results in MySQL into PHP array format.
- Use mysql_fetch_array
The most basic way for PHP to query the mysql data table and convert it to an array is to use the mysql_fetch_array function. The function of this function is to convert the MySQL query results from row-by-row data records into PHP array type data. The syntax of this function is as follows:
mysql_fetch_array(resource $result [, int $result_type = MYSQL_BOTH ])
Among them, the first parameter is the MySQL query result set, and the second parameter is an optional parameter, indicating the array type that needs to be returned. MYSQL_BOTH means returning both associative arrays and numeric arrays. In addition, it can also be set to MYSQL_ASSOC and MYSQL_NUM to return only associative arrays or numeric arrays respectively.
The sample code is as follows:
// 连接数据库 $conn = mysql_connect('localhost','root',''); mysql_query("set names 'utf8'"); mysql_select_db('test'); //查询数据表 $sql = "select * from student"; $result = mysql_query($sql); //转换为数组 $arr = array(); while($row = mysql_fetch_array($result,MYSQL_ASSOC)){ $arr[] = $row; } //输出结果 print_r($arr);
In the above code, we first connected to the database, then queried all the data in the student data table, and finally used a while loop to traverse all the query results. Each result is added to the array, and finally the entire array is output.
2. Use PDO to query and convert arrays
Another method is to use PHP's PDO (PHP Data Object) extension library to query the database and obtain the result set. PDO provides a more flexible and secure way to operate the database. Querying the database through PDO can effectively prevent attacks such as SQL injection.
The example of PDO querying MySQL is as follows:
//连接数据库 $dsn = 'mysql:dbname=test;host=localhost'; $username = 'root'; $password = ''; try { $dbh = new PDO($dsn, $username, $password,array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8")); } catch (PDOException $e) { echo 'Connection failed: ' . $e->getMessage(); } //查询数据表 $sql = "select * from student"; $sth = $dbh->query($sql); //转换为数组 $arr = $sth->fetchAll(PDO::FETCH_ASSOC); print_r($arr);
In the above example, we first established a connection to the MySQL database, and then used PDO (PHP data object) to query all the data in the student data table , and use the fetchAll function to obtain the data of all result sets, and finally output the array.
You can see that in this example, the code for querying the data table and converting it into an array is relatively simple, and the PDO method is more secure and reliable than the mysql_fetch_array method.
Summary:
Using the above two methods, the data table query results in MySQL can be converted into PHP array format. Method 1 is suitable for MySQL extended library functions. Its disadvantage is that it does not support the faster and more secure PDO operation method. The PDO method is more flexible and safer. It has the advantage of preventing SQL injection attacks and is a compromise solution. The choice of usage method should be weighed based on the actual scenario.
The above is the detailed content of Convert php query data table to array. For more information, please follow other related articles on the PHP Chinese website!

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

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

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

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

Hot Topics

This article examines current PHP coding standards and best practices, focusing on PSR recommendations (PSR-1, PSR-2, PSR-4, PSR-12). It emphasizes improving code readability and maintainability through consistent styling, meaningful naming, and eff

This article details implementing message queues in PHP using RabbitMQ and Redis. It compares their architectures (AMQP vs. in-memory), features, and reliability mechanisms (confirmations, transactions, persistence). Best practices for design, error

This article details installing and troubleshooting PHP extensions, focusing on PECL. It covers installation steps (finding, downloading/compiling, enabling, restarting the server), troubleshooting techniques (checking logs, verifying installation,

This article explains PHP's Reflection API, enabling runtime inspection and manipulation of classes, methods, and properties. It details common use cases (documentation generation, ORMs, dependency injection) and cautions against performance overhea

PHP 8's JIT compilation enhances performance by compiling frequently executed code into machine code, benefiting applications with heavy computations and reducing execution times.

This article explores strategies for staying current in the PHP ecosystem. It emphasizes utilizing official channels, community forums, conferences, and open-source contributions. The author highlights best resources for learning new features and a

This article explores asynchronous task execution in PHP to enhance web application responsiveness. It details methods like message queues, asynchronous frameworks (ReactPHP, Swoole), and background processes, emphasizing best practices for efficien

This article addresses PHP memory optimization. It details techniques like using appropriate data structures, avoiding unnecessary object creation, and employing efficient algorithms. Common memory leak sources (e.g., unclosed connections, global v
