search
Homephp教程PHP源码多维数组转一维

多维数组转一维

Jun 01, 2016 pm 02:33 PM

跳至

/**
 * 将多维数组转为一维数组
 * @author echo* @param array $arr
 * @return array
 */
function ArrMd2Ud($arr) {
	#将数值第一元素作为容器,作地址赋值。
	$ar_room = &$arr[key($arr)];
	#第一容器不是数组进去转呀
	if (!is_array($ar_room)) {
		#转为成数组
		$ar_room = array($ar_room);
	}
	#指针下移
	next($arr);
	#遍历
	while (list($k, $v) = each($arr)) {
		#是数组就递归深挖,不是就转成数组
		$v = is_array($v) ? call_user_func(__FUNCTION__, $v) : array($v);
		#递归合并
		$ar_room = array_merge_recursive($ar_room, $v);
		#释放当前下标的数组元素
		unset($arr[$k]);
	}
	return $ar_room;
}


2. [代码]调 

$arr = array(1, 2, 3 => array(1, 2, 'ar' => array(1, 2 => array('a', 'b'))), array('ar' => array(3, 4)));
print_r(ArrMd2Ud($arr));

           

       

Statement
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MantisBT

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.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)