Home Daily Programming PHP Knowledge How does PHP get the contents of a txt file and convert it into an array? (Graphic + video tutorial)

How does PHP get the contents of a txt file and convert it into an array? (Graphic + video tutorial)

Sep 13, 2018 pm 04:42 PM

During the development of PHP projects, sometimes it may be necessary to convert file contents into arrays to facilitate data management and analysis. This article will introduce to you how to use PHP to convert the contents of a txt file into an arrayThat is, the specific method of PHP reading the file content and assigning it to the array.

Below we will explain the relevant knowledge in detail through simple code examples:

For example, there is a 1.txt file with the content:

PHP中文网 HTML中文网

So how do we use PHP to get 1 What about the content in a .txt file and converting the content into an array?

The code for PHP to obtain the contents of a txt file and convert it into an array is as follows:

<?php
$data=file_get_contents(&#39;1.txt&#39;);
var_dump(explode(" ",$data));

The main idea of ​​converting the file contents into an array is to first use file_get_contents() Function reads the contents of the file into a string, and then uses the explode
function in PHP to convert the string into an array.

The result of accessing the above code through the browser is as shown in the figure below:

How does PHP get the contents of a txt file and convert it into an array? (Graphic + video tutorial)

As can be seen from the figure, we have successfully added 1. txt file is converted into array form through PHP.

The above is an introduction to the specific method of converting the contents of a txt file into an array in PHP. Hope it helps those in need!

The above is the detailed content of How does PHP get the contents of a txt file and convert it into an array? (Graphic + video tutorial). For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
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

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

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.

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

PHP Tutorial
1504
276