Home  >  Article  >  Backend Development  >  How to modify the value of one-dimensional array in php

How to modify the value of one-dimensional array in php

PHPz
PHPzOriginal
2023-04-26 09:16:36529browse

PHP is a very powerful programming language, and its array type has also been widely used in the development process. In common development scenarios, we often need to modify the value of a specific position in an array. This article will introduce how to modify the value of a one-dimensional array.

1. Definition of Array

To define a one-dimensional array in PHP, you can use the following method:

$arr = array(1, 2, 3, 4, 5); // 创建一个包含5个元素的一维数组

You can also use the following syntax:

$arr = [1, 2, 3, 4, 5]; // 创建一个包含5个元素的一维数组

2. Modify the value of the array

Modifying the value of the array usually requires two parameters: the index of the element to be modified and the new value. Once we know the index of the element we want to modify, we can easily use the assignment operator to store the new value at that location.

The following is an example of modifying array elements:

$arr = array('apple', 'banana', 'cherry'); // 创建一个包含3个元素的一维数组
$arr[1] = 'orange'; // 修改索引为1的元素

print_r($arr); // 输出数组

The output is:

Array
(
    [0] => apple
    [1] => orange
    [2] => cherry
)

In the above example, we created an array containing three string elements . Next, we change the element at index 1 in the array to 'orange'. Finally, we use the print_r function to output the array to see the modified results.

3. Incremental modification of array element values

In some scenarios, we need to incrementally modify the values ​​of certain elements in the array, such as changing the value of each element in the array The value increases by 5. At this point we can use a loop to traverse the array and implement the increment operation. Here is an example showing how to incrementally modify each element in an array:

$arr = array(1, 2, 3, 4, 5); // 创建一个包含5个元素的一维数组

for ($i = 0; $i < count($arr); $i++) {
    $arr[$i] += 5; // 增加5
}

print_r($arr); // 输出数组

The output is:

Array
(
    [0] => 6
    [1] => 7
    [2] => 8
    [3] => 9
    [4] => 10
)

In the above example, we defined an array containing 5 An array of elements, use a loop to iterate through the array and increment each element by 5. Finally, we use the print_r function to output the array to view the modification results.

4. Decremental modification of array element values

Similarly, if we need to decrement the element values ​​in the array, we can use a loop to traverse the array and implement the decrement operation. Here is an example showing how to decrement each element in an array:

$arr = array(10, 20, 30, 40, 50); // 创建一个包含5个元素的一维数组

for ($i = 0; $i < count($arr); $i++) {
    $arr[$i] -= 5; // 递减5
}

print_r($arr); // 输出数组

The output is:

Array
(
    [0] => 5
    [1] => 15
    [2] => 25
    [3] => 35
    [4] => 45
)

In the above example, we defined an array with 5 elements array and use a loop to decrement each element value by 5. Finally, we use the print_r function to output the array to view the modification results.

5. Deletion operation of array elements

In PHP, we can also delete an element in the array. Here is an example showing how to delete elements from an array:

$arr = array('apple', 'banana', 'cherry', 'orange'); // 创建一个包含4个元素的一维数组

unset($arr[1]); // 删除索引为1的元素

print_r($arr); // 输出数组

The output is:

Array
(
    [0] => apple
    [2] => cherry
    [3] => orange
)

In the above example, we have created a one-dimensional array containing 4 elements, Then the element with index 1 is deleted using the unset function. Finally, we use the print_r function to output the array to view the deletion results.

6. Conclusion

During the development process, we often need to modify the value of a one-dimensional array, such as increasing or decreasing one by one, deleting an element in the array, etc. This article provides some examples to demonstrate how to implement these operations. When using array operations, we should choose the most suitable method based on actual needs.

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

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