How to remove a single value from an array in php

php中世界最好的语言
Release: 2023-03-22 09:14:01
Original
2229 people have browsed it

This time I will show you how to retrieve a single value from an array in PHP. What are the precautions for retrieving a single value from an array in PHP? The following is a practical case, let's take a look.

1. Array arr

var_dump(arr) The value is as follows:

array (size=3)
 'delete' => 
 array (size=3)
  0 => string 'HBSFlyRecode20170222-101501.txt' (length=31)
  1 => string 'HBSFlyRecode20170222-105502.txt' (length=31)
  2 => string 'HBSFlyRecode20170222-108803.txt' (length=31)
 'new' => 
 array (size=3)
  0 => string 'HBSFlyRecode20170223-101504.txt' (length=31)
  1 => string 'HBSFlyRecode20170223-105505.txt' (length=31)
  2 => string 'HBSFlyRecode20170223-108806.txt' (length=31)
 'old' => 
 array (size=3)
  0 => string 'HBSFlyRecode20170221-101507.txt' (length=31)
  1 => string 'HBSFlyRecode20170221-105508.txt' (length=31)
  2 => string 'HBSFlyRecode20170221-108809.txt' (length=31)
Copy after login
echo $arr['old'][0];
打印出: HBSFlyRecode20170221-101507.txt
Copy after login
But if arr is a

object form, the print result is as follows:

var_dump(arr)
object(stdClass)[1]
 public 'delete' => 
 array (size=3)
  0 => string 'HBSFlyRecode20170222-101501.txt' (length=31)
  1 => string 'HBSFlyRecode20170222-105502.txt' (length=31)
  2 => string 'HBSFlyRecode20170222-108803.txt' (length=31)
 public 'new' => 
 array (size=3)
  0 => string 'HBSFlyRecode20170223-101504.txt' (length=31)
  1 => string 'HBSFlyRecode20170223-105505.txt' (length=31)
  2 => string 'HBSFlyRecode20170223-108806.txt' (length=31)
 public 'old' => 
 array (size=3)
  0 => string 'HBSFlyRecode20170221-101507.txt' (length=31)
  1 => string 'HBSFlyRecode20170221-105508.txt' (length=31)
  2 => string 'HBSFlyRecode20170221-108809.txt' (length=31)
Copy after login
You cannot use $arr['old'][0] to get the value. You can use the

foreach method common to arr objects and arrays. Value:

function getValue($arr){
 foreach($arr as $key => $value){
  if(is_array($value)){
   getValue($value);
  }else{
   echo $value."<br>";
  }
 }
}
Copy after login

If arr is in object form, you can convert the object into array form. Here is a shortcut:

1. $object_json = json_encode($arr); What you get is an object

$json = json_encode($arr,true); What you get is pure json

2. json_decode($object_json) What you get with json_decode($json) is an array object

json_decode($object_json,true) What you get with json_decode($json,true) is an array

To sum up , how to convert an array object into an array: This problem was found in the

arr=jsondecode(jsonencode(arr=jsondecode(jsonencode(arr,true),true);
Copy after login
project. It is recommended that you use json_encode() and json_decode() when converting json and array in php. Add true to the second parameter, that is:

json_encode(arr,true);jsondecode(arr,true);jsondecode(json,true);
Copy after login
I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the PHP Chinese website!

Recommended reading:

detailed explanation of php retaining key values ​​+ merging arrays

How to remove duplicate values ​​in a two-dimensional array

How to distinguish associative arrays from index arrays

The above is the detailed content of How to remove a single value from an array in php. For more information, please follow other related articles on the PHP Chinese website!

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