自己写的兼容低于PHP 5.5版本的array_column()函数
发布:smiling 来源: PHP粉丝网 添加日期:2021-04-18 22:04:32 浏览: 评论:0
这篇文章主要介绍了自己写的兼容低于PHP 5.5版本的array_column()函数,array_column是PHP 5.5新增函数,有时在低版本中也可能要用到,需要的朋友可以参考下
array_column 用于获取二维数组中的元素(PHP 5.5新增函数),但我们有时候需要在低版本的PHP环境中使用…
- if( ! function_exists('array_column'))
- {
- function array_column($input, $columnKey, $indexKey = NULL)
- {
- $columnKeyIsNumber = (is_numeric($columnKey)) ? TRUE : FALSE;
- $indexKeyIsNull = (is_null($indexKey)) ? TRUE : FALSE;
- $indexKeyIsNumber = (is_numeric($indexKey)) ? TRUE : FALSE;
- $result = array();
- foreach ((array)$input AS $key => $row)
- {
- if ($columnKeyIsNumber)
- {
- $tmp = array_slice($row, $columnKey, 1);
- $tmp = (is_array($tmp) && !emptyempty($tmp)) ? current($tmp) : NULL;
- }
- else
- {
- $tmp = isset($row[$columnKey]) ? $row[$columnKey] : NULL;
- }
- if ( ! $indexKeyIsNull)
- {
- if ($indexKeyIsNumber)
- {
- $key = array_slice($row, $indexKey, 1);
- $key = (is_array($key) && ! emptyempty($key)) ? current($key) : NULL;
- $key = is_null($key) ? 0 : $key;
- }
- else
- {
- $key = isset($row[$indexKey]) ? $row[$indexKey] : 0;
- }//www.phpfensi.com
- }
- $result[$key] = $tmp;
- }
- return $result;
- }
- }
Tags: PHP5 5 array_column
相关文章
- ·php中fgetcsv函数在php5.2.8 中的数据不完整(2013-12-07)
- ·PHP5.5 安装后出现不能调用json_encode 解决办法(2013-12-08)
- ·PHP5匿名函数的实例(2016-01-28)
- ·PHP5.5和之前的版本empty函数的不同之处(2021-02-19)
- ·PHP5.3与5.5废弃与过期函数整理汇总(2021-03-19)
- ·PHP5.2下preg_replace函数的问题(2021-05-25)
- ·php 自定义UTF8和cp1251函数(2013-11-28)
- ·php md5 与md5_file区别详细说明(2013-11-28)
- ·php 5.3 闭包语法介绍 function() use() {}(2014-02-27)
- ·php 自定义复杂MD5加密函数(2014-08-22)
- ·php md5加密函数参考详解(2014-08-23)
- ·windows中PHP 5.2.17安装eAccelerator方法(2014-08-25)
- ·PHP 5.3与5.5废弃/过期函数整理(2015-04-11)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)