How to fill array with given values ​​in PHP

autoload
Release: 2023-03-08 22:04:02
Original
1681 people have browsed it

This article mainly introduces how to use the array_pad() function in PHP to fill an array with a given value.

The syntax is as follows:

array_pad ( array $array , int $size , mixed $value ) : array
Copy after login
  • array represents an array.

  • size represents the number of array elements returned from the function.

  • value represents the value of the new element in the array returned from the function.

Return value: Returns the filled array. The returned array is just a copy, the original array will not be changed.

Example:

?php
$a=array("red","green");
echo "
";
var_dump(array_pad($a,-5,"blue"));
?>
Copy after login

Compilation display:

array(5) {
  [0]=>
  string(4) "blue"
  [1]=>
  string(4) "blue"
  [2]=>
  string(4) "blue"
  [3]=>
  string(3) "red"
  [4]=>
  string(5) "green"
}
Copy after login

PS: The value of size is int Type

  • If size is a positive number, fill it to the right side of the array;

Copy after login
  • If size is a negative number, fill it from the left;

Copy after login
  • If the absolute value of size is less than or equal to the length of the arr array, there will be no Any padding.

Copy after login

Recommended: "php video tutorial" "php tutorial"

The above is the detailed content of How to fill array with given values ​​in PHP. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
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!