How to change the value of element array in php

藏色散人
Release: 2023-03-08 16:58:01
Original
2416 people have browsed it

How to change the value of an element array in php: first declare a multi-dimensional array of multiple data types; then modify the value of the element with index 0 through "$data[0] = 'hello world';" ;Finally output the modified structure of the entire array.

How to change the value of element array in php

The operating environment of this article: windows7 system, PHP7.1 version, DELL G3 computer

How does php change the value of an element array?

Let’s go directly to the example:

";
//修改下标为0的元素的值
$data[0] = 'hello world';
//修改下标为2的元素中下标为1的元素的值
$data[2][1] = 'FIFA';
//输出修改后整个数组的结构
print_r("新数组: ".$data);
?>
Copy after login

Output result:

Array ( [0] => hello [1] => 2008 [2] => Array ( [0] => 8 [1] => NBA ) [3] => 5 )
Array ( [0] => hello world [1] => 2008 [2] => Array ( [0] => 8 [1] => FIFA ) [3] => 5 )
Copy after login

[Recommended learning: "PHP Video Tutorial"]

The above is the detailed content of How to change the value of element array in php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!