Home  >  Article  >  Backend Development  >  How to modify values ​​within an array in PHP

How to modify values ​​within an array in PHP

PHPz
PHPzOriginal
2023-04-18 09:47:57582browse

PHP is widely used as a server-side scripting language, and arrays, as a basic data structure, also play an important role in the PHP language. In daily development work, we often need to operate on arrays, and modifying the values ​​in the array is one of the most common needs. This article will introduce how to modify the values ​​​​in an array in PHP. I hope it will be helpful to everyone.

1. Modification based on array subscript

When we need to modify the value of an element in the array, the most common method is to use the array subscript. In PHP, we can directly access or modify elements in an array through array subscripts. The specific steps are as follows:

  1. Define an array

Before starting the modification operation, we need to define an array first for subsequent operations. In this example, we define an array containing 3 elements. The code is as follows:

$sample_array = array('apple', 'banana', 'orange');
  1. Accessing array elements

When accessing array elements, we need to use Array subscript to specify the element to be accessed. In this case, we need to access the first element in the array, which is 'apple'. The code is as follows:

echo $sample_array[0];

After executing this code, 'apple' will be output.

  1. Modify the element value in the array

To modify the value of an array element, we only need to use the array subscript of the element and assign it the required value updated value. In this example, we change "apple" to "watermelon", and the code is as follows:

$sample_array[0] = 'watermelon';

After executing this code, the value of the first element "apple" of the $sample_array array is modified to " watermelon”.

2. Modification based on array functions

In addition to using array subscripts to modify element values, PHP also provides some built-in array functions that can help us modify arrays. Below we will introduce two functions: array_splice() and array_replace().

  1. array_splice()

array_splice() function can insert or delete elements in the array and rearrange the array. The syntax of this function is as follows:

array_splice(array &$input, int $offset[, int $length[, mixed $replacement = array() ]])

Among them, $input represents the array to be modified; $offset represents the position of the element to be inserted or deleted; $length represents the number of elements to be deleted; $replacement represents the number to be inserted. new element. If $length is not specified, all elements starting at $offset are deleted. If $replacement is not specified, an empty array is inserted.

The following are some examples of the array_splice() function:

// 定义一个数组
$sample_array = array('apple', 'banana', 'orange');

// 插入新元素
array_splice($sample_array, 1, 0, array('watermelon'));
print_r($sample_array);

// 删除元素
array_splice($sample_array, 2, 1);
print_r($sample_array);

After executing the above code, the values ​​of the $sample_array array will respectively become:

Array ( [0] => apple [1] => watermelon [2] => banana [3] => orange )
Array ( [0] => apple [1] => watermelon [2] => orange )

The first piece of code uses The array_splice() function inserts a new element "watermelon" at the second position of the array, and the value of the array becomes Array([0] => apple [1] => watermelon [2] => banana [3 ] => orange); The second piece of code uses the array_splice() function to delete the third element "banana" in the array, and the value of the array becomes Array([0] => apple [1] => watermelon [ 2] => orange).

  1. array_replace()

The array_replace() function can replace the specified element in the array with a new value. The syntax of this function is as follows:

array_replace(array $array1, array $array2[, array $...])

Among them, $array1 represents the array that needs to be replaced, $array2 and the following arrays represent the new values ​​used for replacement. If the new value matches the key of the old value, the old value will be overwritten by the new value. If the key of the new value is a string, the new value corresponding to this key will be placed at the position of the original key; if it is a number, the new value will be appended to the end of the array.

The following is an example of using the array_replace() function:

// 定义2个数组
$sample_array1 = array('apple', 'banana', 'orange');
$sample_array2 = array(1 => 'watermelon', 2 => 'grape');

// 用新值替换旧值
$new_array = array_replace($sample_array1, $sample_array2);
print_r($new_array);

After executing the above code, the value of the $new_array array will become Array([0] => apple [1] = > watermelon [2] => grape).

3. Summary

To modify the values ​​in the PHP array, we can use array subscripts or built-in array functions. Different methods have different advantages and disadvantages in different situations. The appropriate method needs to be chosen based on specific needs. At the same time, for array operations, attention should be paid to avoiding issues such as out-of-bounds and array type mismatch in actual programming to ensure the correctness and operating efficiency of the code.

The above is the detailed content of How to modify values ​​within an 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