Help me see how recursion receives the return value
逢丿场
逢丿场 2017-08-16 17:09:14
0
1
730

//Filter HTML tags

function formatString($str){

$preg = "/<\/?[^>] >/i";


## //Determine whether it is an array

if(!is_array($str)){

return preg_replace($preg,'', $ str);

} else {

Foreach ($ Str as $ k = & gt; $ v) {

## // Judging whether the $ v is a multidimensional array

##                                                                                                       using   using using using         use using using ‐ ‐ ‐ ‐ ‐ ‐ ‐ ‐ ‐                                                                               using   using using using   to use ’       through ’ through ’ using ‐ ‐ ‐ ‐ ‐ ‐ ‐ ‐ if(is_array($v)) $str[$k][$v] = formatString($v); $preg,'',$v);}

}

## return $str;

}

return $str;

}

逢丿场
逢丿场

reply all(1)
逢丿场

Solved

//Filter HTML tags

function formatString($str){

$preg = "/</?[^>]+>/i";

$tree = array() ;


// Determine whether it is an array

if(!is_array($str)){

                                                                          ’ ’s ’ ’s ’ s ’ through ’ s ’ ’         out out out out out out out out out out out out out out of  when to  -        -                              foreach ($str as $k=> } else if (! is_array ($ v)) {

$ tree [$ k] = preg_replace ($ preg, '', $ v);

}

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template