3v4l.org

run code in 300+ PHP versions simultaneously
<?php $arr = array(); $arr["Intercambio"]["0"]["Versao"]["0"] = "2"; $arr["Intercambio"]["0"]["TipoIdentificacaoRemetente"]["0"] = "cnpj"; $arr["Intercambio"]["0"]["IdentificacaoRemetente"]["0"] = "02089969001420"; $arr["TextosCodificados"]["TextoCodificado"]["0"]["QualificadorAssunto"]["0"] = "ALL"; $arr["TextosCodificados"]["TextoCodificado"]["0"]["Texto"] = "Vnd mer.adq.rec.ter.op.mer.sj.rg.sub.trb.cnd.sub.t"; $arr["TextosCodificados"]["TextoCodificado"]["1"]["QualificadorAssunto"]["0"] = "AAI"; $arr["TextosCodificados"]["TextoCodificado"]["1"]["Texto"] = "Protocolo ICMS 18809 e 1192012 ICMS Retido Art 313W"; $arr["TextosCodificados"]["TextoCodificado"]["2"]["QualificadorAssunto"]["0"] = "IVN"; $arr["TextosCodificados"]["TextoCodificado"]["2"]["Texto"] = "Pedido Interno:0000283278 ID da Carga:"; function recursive_show_array($arr, $tmp = array()) { foreach($arr as $k => $value) {var_dump(is_array($value));die; if(is_array($value)) { $tmp = recursive_show_array($value, $tmp); } else { //var_dump($value); $tmp[$k] = $value; } } return $tmp; } $rst = recursive_show_array($arr); //var_dump($rst); die; function teste($arr) { $newArr = array(); foreach( $arr as $k => $v ) { $tmp = array(); if( is_array($v) && count($v) == 1 ) { $newArr[$k] = $v; $tmp = teste($v); } elseif( is_array($v) && count($v) > 1 ) { var_dump($v); $tmp = teste($v); //$newArr = array_merge($newArr, $tmp); } } return $newArr; } $rst = teste($arr); //var_dump($rst);
Output for git.master, git.master_jit, rfc.property-hooks
bool(true)

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
40.22 ms | 401 KiB | 8 Q