php三维数组转换二维数组,php 三维数组转二维数组(多维数组变合拼二维数组)(foreach循环 数组叠加)...

/***************

* @function 三维数组转二维数组

* @Param: $array : 传入参数

* @Return: $tempArr 返回结果数组

***************/

function array3_to_array2($array){

$array = array_filter($array);

$array = array_values($array);

foreach ($array as $orderKey =>$orderVal){

$count = count($orderVal);

if($count > 1){

for ($i = 0;$i < $count;$i++){

$tempArr[] = $orderVal[$i];

}

}else{

$tempArr[] = $orderVal[0];

}

}

return $tempArr;

}

例子:三维数组

[0] => array(19) {

[0] => array(47) {

["pid"] => string(3) "291"

["bigclass"] => NULL

["title"] => string(4) "Html"

["class_id"] => string(1) "0"

["starttime"] => NULL

["endtime"] => NULL

}

[1] => array(47) {

["pid"] => string(3) "291"

["bigclass"] => string(3) "566"

["title"] => string(29) "HTML+css入门课程第一节"

["class_id"] => string(1) "0"

["starttime"] => string(19) "2020-07-14 09:36:36"

["endtime"] => string(19) "2020-07-14 11:16:36"

}

}

[1] => array(14) {

[0] => array(47) {

["pid"] => string(3) "128"

["bigclass"] => NULL

["title"] => string(9) "第一章"

["class_id"] => NULL

["starttime"] => NULL

["endtime"] => NULL

}

[1] => array(47) {

["pid"] => string(3) "128"

["bigclass"] => string(3) "288"

["title"] => string(13) "今天课程2"

["class_id"] => NULL

["starttime"] => string(19) "2019-04-18 00:00:00"

["endtime"] => string(19) "2019-04-18 00:30:00"

}

[2] => array(47) {

["pid"] => string(3) "128"

["bigclass"] => string(3) "288"

["title"] => string(13) "今天课程3"

["class_id"] => NULL

["starttime"] => string(19) "2019-04-22 09:57:24"

["endtime"] => string(19) "2019-04-22 10:27:24"

}

}

}

最终效果:

array(33) {

[0] => array(47) {

["pid"] => string(3) "291"

["bigclass"] => NULL

["title"] => string(4) "Html"

["class_id"] => string(1) "0"

["starttime"] => NULL

["endtime"] => NULL

}

[1] => array(47) {

["pid"] => string(3) "291"

["bigclass"] => string(3) "566"

["title"] => string(29) "HTML+css入门课程第一节"

["class_id"] => string(1) "0"

["starttime"] => string(19) "2020-07-14 09:36:36"

["endtime"] => string(19) "2020-07-14 11:16:36"

}

[2] => array(47) {

["pid"] => string(3) "291"

["bigclass"] => string(3) "566"

["title"] => string(20) "HTML+css入门课程"

["class_id"] => string(1) "0"

["starttime"] => string(19) "2020-07-15 17:45:56"

["endtime"] => string(19) "2020-07-15 19:45:56"

}

[3] => array(47) {

["pid"] => string(3) "291"

["bigclass"] => string(3) "566"

["title"] => string(29) "HTML+css入门课程第二节"

["class_id"] => string(1) "0"

["starttime"] => string(19) "2020-07-16 09:37:21"

["endtime"] => string(19) "2020-07-16 11:37:21"

}

[4] => array(47) {

["pid"] => string(3) "291"

["bigclass"] => string(3) "566"

["title"] => string(32) "123HTML+css入门课程第二节"

["class_id"] => string(1) "0"

["starttime"] => string(19) "2020-07-16 14:33:15"

["endtime"] => string(19) "2020-07-16 17:03:15"

}

[5] => array(47) {

["pid"] => string(3) "291"

["bigclass"] => string(3) "566"

["title"] => string(31) "01HTML+css入门课程第一节"

["class_id"] => string(1) "0"

["starttime"] => string(19) "2020-07-16 17:37:18"

["endtime"] => string(19) "2020-07-16 19:17:18"

}

[6] => array(47) {

["pid"] => string(3) "291"

["bigclass"] => string(3) "566"

["title"] => string(32) "666HTML+css入门课程第一节"

["class_id"] => string(1) "0"

["starttime"] => string(19) "2020-07-17 09:43:25"

["endtime"] => string(19) "2020-07-17 12:13:25"

}

[7] => array(47) {

["pid"] => string(3) "291"

["bigclass"] => string(3) "566"

["title"] => string(31) "22HTML+css入门课程第一节"

["class_id"] => string(1) "0"

["starttime"] => string(19) "2020-07-17 14:16:34"

["endtime"] => string(19) "2020-07-17 17:16:34"

}

}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/560465.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

php ip2long bug,PHP代码ip2long 循环有关问题

PHP代码ip2long 循环问题print_r($dataIp);foreach ($dataIp as $key>$value) {$data[ip] $value;$data[iplong] bindec(decbin(ip2long($value)));print_r($data);}打印出来的结果为&#xff1a;引用Array([0] > 208.104.70.215[1] > 74.101.176.171[2…

Java 抽象类和抽象方法

Java 抽象类和抽象方法 抽象类是它的所有子类的公共属性的集合&#xff0c;是包含一个或多个抽象方法的类。使用抽象类可以充分利用这些公共属性来提高开发和维护程序的效率。抽象方法必须为public或protected。&#xff08;因为如果是private&#xff0c;则不能被子类继承&am…

ltrim函数php,php ltrim函数怎么用?

php ltrim()函数用于删除字符串左边的空格或其他预定义字符&#xff0c;语法为“ltrim(string,charlist)”&#xff0c;参数string指定需要处理的字符串&#xff0c;参数charlist指定要从字符串中删除哪些字符&#xff1b;然后返回已修改的字符串。php ltrim函数作用&#xff1…

php免费根据ip查城市,根据ip获取城市的方法

这个方法放到includes/lib_base.php的最下面/*** 根据ip获取城市的方法* param type $ip ip地址* return boolean|string**/function GetIpLookup($ip ){if(empty($ip)){return 请输入IP地址;}$res file_get_contents(http://int.dpool.sina.com.cn/iplookup/iplookup.php?f…

java strcpy,详解C语言中strcpy()函数与strncpy()函数的使用

C语言strcpy()函数&#xff1a;复制字符串头文件&#xff1a;#include 定义函数&#xff1a;char *strcpy(char *dest, const char *src);函数说明&#xff1a;strcpy()会将参数src 字符串拷贝至参数dest 所指的地址。返回值&#xff1a;返回参数dest 的字符串起始地址。附加说…

使用github+hexo搭建静态blog

解决了个人博客图片不显示问题。解决了打开页面产生404问题。学习了如何更换界面主题。学习了如何使用Git。 注&#xff1a;这篇文章仅仅是入个门&#xff0c;了解一下怎么使用githubhexo创个静态blog&#xff0c;具体blog细节比如个人介绍&#xff0c;评论插件&#xff0c;音…

java 安卓调试,Android Studio(二十一):调试你的应用

Android Studio包含了一个调试器&#xff0c;允许你调试运行在Android虚拟机或连接的Android设备的应用。通过Android Studio的调试器&#xff0c;你可以&#xff1a;1、 选择你调试设备的app2、 为你的代码设置断点3、 在运行时检测变量和表达式4、 截图和录像通过点击工具栏中…

java将属性练成字符串,Java中通过属性字符串名取属性内容

在Android开发当中资源的获取其实是间接通过R文件进行的,这个R文件就相当于是一个地址列表,存放着每个资源的地址那么如何快速高效的获取就是这篇文章要分析的问题假设我们有一个图片资源叫btn_bg那么将一个按钮背景设置为这个图片的方式就是btn.setBackgroundResource(R.drawa…

AttributeError: module ‘numpy‘ has no attribute ‘int‘.

解决方法 降低numpy版本 numpy 1.22 修改源代码 参考 [1] 【已解决】AttributeError: module ‘numpy‘ has no attribute ‘int‘. [2] AttributeError: module numpy has no attribute int .报错解决方案

Java字段和属性

属性和字段区别&#xff1a; Java中的属性(property)&#xff0c;通常可以理解为get和set方法。更形象的说就是&#xff1a;属性是对字段的封装&#xff0c;供外部访问。 而字段(field)&#xff0c;通常叫做“类成员”&#xff0c;或 "类成员变量”&#xff0c;有时也叫“…

java我现在不懂看不懂,看都看不懂,难道我与Java无缘吗

该楼层疑似违规已被系统折叠 隐藏此楼查看此楼package VIP;public class Hero {private String name;private int Life;public void hero(String name,int Life){}public String getName() {return name;}public void setName(String name) {this.name name;}public int getLi…

Java反射 Class类

Class类的实例表示正在运行的Java应用程序中的类和接口。它是Java反射的基础&#xff0c;对任何一个类&#xff0c;首先产生一个Class对象&#xff0c;然后才通过class类获得其他的信息。 获取class类对象方式&#xff1a; 通过Object类提供的getClass()方法获得Class类对象。…

php数字从大到小生成,php输入几个数从大到小排序的案例

php输入几个数从大到小排序的案例发布时间&#xff1a;2020-10-28 11:53:20来源&#xff1a;亿速云阅读&#xff1a;66作者&#xff1a;小新php输入几个数从大到小排序的案例&#xff1f;这个问题可能是我们日常学习或工作经常见到的。希望通过这个问题能让你收获颇深。下面是小…

Java反射 Constructor类

Java反射 Constructor类 Java通过反射可以获取构造方法&#xff0c;和使用构造方法创造对象。 在网上找了一个比较好理解的例子来弄清楚Constructor类。 public Constructor getConstructor()// 公共构造方法对象 public Constructor[] getConstructors()//所有公共构造方法…

mysql hammerdb,[料理佳餚] 用 HammerDB 來執行資料庫 TPC-C 效能量測

TPC-C 模擬的情境TPC-C 模擬的情境是一個大型的商品批發商&#xff0c;擁有若干個倉庫&#xff0c;每個倉庫擁有 100000 件商品庫存、負責為 10 個地區供貨&#xff0c;每個地區服務 3000 名客戶&#xff0c;每名客戶平均一筆訂單有 10 項商品&#xff0c;所有訂單中約 1% 在其…

使用Linux进行c或c++编程

使用Linux进行C或c语言编程 1.创建名为 HelloWorld 的 c 或者 c 文件 vim HelloWorld.c vim Helloworld.cpp2.然后就进入文本编辑界面 输入i&#xff0c;进入编辑模式。写代码。按esc键&#xff0c;进入命令模式&#xff0c;输入:wq保存并退出文本编辑器。然后可以看见对应位…

如何用php写表单中的年月日,php写的日历程序 - adamboy的个人页面 - OSCHINA - 中文开源技术交流社区...

$weekArr array(Sun,Mon,Tue,Wed,Thu,Fri,Sat);//获取空格&#xff1a;//echo date("D",strtotime("2012-02-07"));function getSpace($month,$year){global $weekArr;if(!$year){$year date("Y");}$firstDay date("D",strtotime($…

Java反射 field

Java反射 field 获取字节码文件对象 Class c Class.forName(“fieldtest.Student”); 通过无参构造方法创建对象obj Constructor con c.getConstructor(); Object obj con.newInstance(); 通过成员变量名,获取单个的成员变量 Field nameField c.getField("name"…

mysql5.7循环,python3.4用循环往mysql5.7中写数据并输出的实现方法

python3.4用循环往mysql5.7中写数据并输出的实现方法来源&#xff1a;中文源码网 浏览&#xff1a; 次 日期&#xff1a;2018年9月2日python3.4用循环往mysql5.7中写数据并输出的实现方法 如下所示&#xff1a;#!/usr/bin/env python# -*- coding:utf-8 -*-# __author__ …

java反射 Method

java反射 Method 获取字节码文件对象 Class c Class.forName("fieldtest.Student");通过无参构造方法创建对象obj Constructor con c.getConstructor(); Object obj con.newInstance();Method m1 c.getMethod(“study”);获取study方法 m1.invoke(obj);使用obj对…