php can modify array keys. Modification method: 1. Use the "array_values (array)" statement to change the string keys in the array to numeric keys; 2. Use "array_combine (key name array, original array)" to replace the keys of the original array with keys The number of elements in the name array, the key array and the original array must be the same.
The operating environment of this tutorial: windows7 system, PHP version 7.1, DELL G3 computer
php can modify the array key. The modification method is as follows:
1. Use the array_values() function
array_values() function can convert an associative array into an index array, that is, the string in the array keys to numeric keys.
<?php $arr=array("Peter"=>65,"Harry"=>80,"John"=>78,"Clark"=>90); var_dump($arr); var_dump(array_values($arr)); ?>
2. Use array_combine() function
array_combine() function can create a new array by merging two arrays , one of the array elements is the key name, and the other array element is the key value. The number of elements in the key array and the key value array must be the same.
In other words, this function can replace the keys of the original array with elements in the key array.
Example:
<?php header('content-type:text/html;charset=utf-8'); $arr=array("red","green","blue","yellow"); echo "原数组:"; var_dump($arr); echo "键名数组:"; $key=array("a","b","c","d"); var_dump($key); echo "修改键后的数组:"; $arr2 = array_combine($key,$arr); var_dump($arr2); ?>
Recommended learning: "PHP Video Tutorial"
The above is the detailed content of Is it possible to modify array keys in php?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SublimeText3 Chinese version
Chinese version, very easy to use

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.
