How to store array into database in php
When using PHP for web development, we usually need to store some data in the database for subsequent use. The most commonly used data type is an array.
Next, let’s explore how to store arrays in the database.
- Prepare the database
First, we need to create a table to store our array data. Taking MySQL as an example, there are the following steps:
1) Create a database, such as test
.
2) Create a table under the database, such as array_data
, to store our array data. The following SQL statement can be used:
CREATE TABLE `array_data` ( `id` int(11) NOT NULL AUTO_INCREMENT, `data` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
This table contains two fields, namely id
and data
. Among them, id
is the primary key, used to uniquely identify a piece of data; the data
field is used to store the array data we want to store.
- Convert array to string
Before storing the array in the database, we need to convert it to a string. Because only string type data can be stored in the database. To convert an array into a string, you can use the serialize()
function provided by PHP.
For example, we have the following array data:
$data = [ 'name' => 'Tom', 'age' => 25, 'gender' => 'male' ];
You can use the serialize()
function to convert it into a string:
$data_str = serialize($data);
At this time, The value of $data_str
is:
a:3:{s:4:"name";s:3:"Tom";s:3:"age";i:25;s:6:"gender";s:4:"male";}
- Write data to the database
It is very simple to store the string in the database. We can use PHP's PDO extension to connect to the database and then use prepared statements to write data to the database.
The specific code is as follows:
try { $dsn = "mysql:host=localhost;dbname=test;charset=utf8mb4"; $username = "root"; $password = ""; $pdo = new PDO($dsn, $username, $password); $pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); $data = [ 'name' => 'Tom', 'age' => 25, 'gender' => 'male' ]; $data_str = serialize($data); $stmt = $pdo->prepare("INSERT INTO array_data (data) VALUES (?)"); $stmt->bindParam(1, $data_str); $stmt->execute(); } catch (PDOException $e) { echo $e->getMessage(); }
In the above code, we first create a PDO object, and then use the prepare()
function to create a prepared statement. Among them, ?
means that the current position requires a parameter, and we pass in the string to be stored as a parameter. Finally, use the execute()
function to execute the prepared statement.
- Reading array data from the database
When we need to read the array data in the database, we can first read the stored string from the database, and then Use the unserialize()
function to convert it to an array.
The specific code is as follows:
try { $dsn = "mysql:host=localhost;dbname=test;charset=utf8mb4"; $username = "root"; $password = ""; $pdo = new PDO($dsn, $username, $password); $pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); $stmt = $pdo->query("SELECT data FROM array_data WHERE id = 1"); $data_str = $stmt->fetchColumn(); $data = unserialize($data_str); print_r($data); } catch (PDOException $e) { echo $e->getMessage(); }
In the above code, we use the query()
function to execute the SQL statement and the fetchColumn()
function Get the first column of data from the result set, which is the string holding our array data. Then, use the unserialize()
function to convert it to an array type.
Finally, use the print_r()
function to output the array data.
Summary
In PHP programs, storing arrays into the database is usually divided into the following steps:
- Prepare the database and create a text type table of fields.
- Convert array to string.
- Save the string into the database.
- Read the string from the database and convert it into an array using the
unserialize()
function.
The above is the detailed content of How to store array into database in php. 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 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 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 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
