php数组相关操作函数

Posted songguojun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php数组相关操作函数相关的知识,希望对你有一定的参考价值。

判断是否是一个数组

function _is_array($value){
    if (is_array($value)) {
        return true;
    } else {
        if(is_object($value) && is_array(json_decode(json_encode($value),true))){
           return true;
        }
        return (is_object($value) AND $value instanceof \Traversable);//实现这个接口对象可以foreach
    }
}

 清空数组

function _destruct_one($object){
    if (_is_array($object)) {
        $length = count($object);
        while($length--){
            array_splice($object,$length,1);
        }
    }
    return $object;
}
var_dump(_destruct_one([1,2,‘d‘,‘key‘=>‘k‘]));  //array(0) {}

 

 

更新中.....

 

以上是关于php数组相关操作函数的主要内容,如果未能解决你的问题,请参考以下文章

数组的相关处理函数及数组的键/值操作函数

几个关于js数组方法reduce的经典片段

PHP基础-常用的数组相关处理函数

PHP数组细讲

几个关于js数组方法reduce的经典片段

不确定分配时 PHP 数组在做啥