Parsing the array_combine() function in php

autoload
Release: 2023-03-09 13:18:02
Original
2024 people have browsed it

In the previous article, we introduced "Using abs() to obtain the absolute value of parameters in php". In this article, we introduce the array_combine() function.

In php, we may need some special requirements when creating an array. For example, create an array, use the value of one array as its key name, and the value of another array as its value. At this time, you can Using the php built-in function array_combine () function, first take a look at the syntax:

array_combine       ( array $keys      , array $values      )
Copy after login
  • $keys: will be used as the new array key. Illegal values ​​will be converted to string type (string).

  • $values: Will be used as the value of Array

  • Return value: Returns the merged array, if the number of cells in the two arrays is different Return false.

Code example:

<?php
$a = array(&#39;ai&#39;, &#39;ui&#39;, &#39;ci&#39;);
$b = array(&#39;大数据&#39;, &#39;交互&#39;, &#39;部门&#39;);
$c = array_combine($a, $b);

print_r($c);
?>
Copy after login
输出:Array ( [ai] => 大数据 [ui] => 交互 [ci] => 部门 )
Copy after login

Recommendation: 2021 PHP interview questions summary (collection)》《php video tutorial

The above is the detailed content of Parsing the array_combine() function 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!