Associative arrays in PHP are composed of one or more key-value pairs, where each key is unique in the array, and each value is associated with a key association. Sometimes, we may need to remove the keys in the array and only keep the values. This article will introduce several methods to achieve this goal.
Method 1: Use the array_values function
The array_values function can return a new array containing all the values in the array, without containing the original keys. The sample code is as follows:
<?php $originalArr = array("name"=>"Tom", "age"=>30, "job"=>"Developer"); $newArr = array_values($originalArr); print_r($newArr); ?>
The output is as follows:
Array ([0] => Tom [1] => 30 [2] => Developer)
Using the array_values function, we get a new array that only contains the values in the array, in which the keys have been removed.
Method 2: Use foreach loop
If we want to directly change the original array, we can use a foreach loop to traverse the array and assign each value to a new array variable. The sample code is as follows:
<?php $originalArr = array("name"=>"Tom", "age"=>30, "job"=>"Developer"); $newArr = array(); foreach($originalArr as $value){ $newArr[] = $value; } print_r($newArr); ?>
The output result is as follows:
Array ([0] => Tom [1] => 30 [2] => Developer)
Method 3: Use array_map function
array_map function can apply a callback function to each element of the array and return a Array of all results. We can simply use a callback function that returns an array value to achieve our needs. The sample code is as follows:
<?php $originalArr = array("name"=>"Tom", "age"=>30, "job"=>"Developer"); $newArr = array_map(function($value){ return $value; }, $originalArr); print_r($newArr); ?>
The output result is as follows:
Array ([0] => Tom [1] => 30 [2] => Developer)
Method 4: Use array_flip function
array_flip function can exchange the keys and values in the array, and the original keys become values. The original value becomes the key. We can use this function to first swap the keys and values, and then use the array_values function to remove the keys. The sample code is as follows:
<?php $originalArr = array("name"=>"Tom", "age"=>30, "job"=>"Developer"); $newArr = array_flip($originalArr); $newArr = array_values($newArr); print_r($newArr); ?>
The output result is as follows:
Array ([0] => Tom [1] => 30 [2] => Developer)
The above are several methods for removing array keys. Different methods are suitable for different scenarios. Choose the appropriate one according to the specific situation. Methods can improve the efficiency of writing code.
The above is the detailed content of How to remove key from associative array in php. For more information, please follow other related articles on the PHP Chinese website!

This article details implementing message queues in PHP using RabbitMQ and Redis. It compares their architectures (AMQP vs. in-memory), features, and reliability mechanisms (confirmations, transactions, persistence). Best practices for design, error

This article examines current PHP coding standards and best practices, focusing on PSR recommendations (PSR-1, PSR-2, PSR-4, PSR-12). It emphasizes improving code readability and maintainability through consistent styling, meaningful naming, and eff

This article details installing and troubleshooting PHP extensions, focusing on PECL. It covers installation steps (finding, downloading/compiling, enabling, restarting the server), troubleshooting techniques (checking logs, verifying installation,

This article explains PHP's Reflection API, enabling runtime inspection and manipulation of classes, methods, and properties. It details common use cases (documentation generation, ORMs, dependency injection) and cautions against performance overhea

PHP 8's JIT compilation enhances performance by compiling frequently executed code into machine code, benefiting applications with heavy computations and reducing execution times.

This article explores strategies for staying current in the PHP ecosystem. It emphasizes utilizing official channels, community forums, conferences, and open-source contributions. The author highlights best resources for learning new features and a

This article explores asynchronous task execution in PHP to enhance web application responsiveness. It details methods like message queues, asynchronous frameworks (ReactPHP, Swoole), and background processes, emphasizing best practices for efficien

This article addresses PHP memory optimization. It details techniques like using appropriate data structures, avoiding unnecessary object creation, and employing efficient algorithms. Common memory leak sources (e.g., unclosed connections, global v


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

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

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

SublimeText3 Linux new version
SublimeText3 Linux latest version

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 English version
Recommended: Win version, supports code prompts!
