dear friends:

hi
please help me for decode this code .

PHP Code: 
<?php ${"\x47\x4c\x4fB\x41LS"}["\x69\x66\x76\x75\x6e\x61thr"]="\x61\x72\x72a\x79";${"\x47\x4c\x4f\x42\x41\x4c\x53"}["\x6bua\x71\x77\x63\x6cw"]="\x76\x61\x72";${"\x47\x4cOB\x41\x4cS"}["\x6b\x6bs\x6ddd\x63o\x74\x69\x67\x6a"]="t\x61gs";${"\x47L\x4fB\x41\x4c\x53"}["g\x78\x69\x67\x6eco"]="ou\x74\x70\x75t";${"\x47L\x4fB\x41LS"}["\x74e\x62l\x78t\x62"]="\x6c\x6f\x61\x64\x73";${"\x47L\x4f\x42AL\x53"}["\x65nv\x72\x75j\x6b\x69kx\x61"]="\x6d";${"\x47\x4c\x4fB\x41L\x53"}["\x72\x61t\x6e\x6f\x72\x77x\x66e\x70\x68"]="l\x6f\x61d\x31";${"\x47LO\x42A\x4c\x53"}["\x72\x66\x6a\x6c\x78\x75"]="p\x61\x67\x65\x74\x69\x74";${"\x47\x4cOB\x41\x4c\x53"}["ijlq\x75\x70\x6es\x6e\x6c"]="\x73\x74\x61\x74\x75\x73";${"\x47\x4cO\x42A\x4c\x53"}["d\x69\x79\x6cul\x71\x66\x6cz\x6f\x66"]="\x73\x6bi\x6e\x70\x61th";${"\x47\x4c\x4fBALS"}["\x71p\x6c\x6c\x79q\x70\x70\x73\x66\x74s"]="l\x6f\x67\x6f";${"\x47\x4c\x4f\x42AL\x53"}["\x79\x6b\x76\x70\x6e\x68g\x69\x6f"]="\x69\x6e\x76ali\x64\x4ds\x67";${"\x47\x4c\x4f\x42\x41\x4c\x53"}["\x75tqbfs\x74\x68\x63"]="\x6c\x6f\x61\x64\x35";${"\x47\x4c\x4fBA\x4c\x53"}["\x6f\x64eu\x67\x68\x64g\x6a"]="\x6c\x69\x63\x41r\x72";${"G\x4cO\x42A\x4c\x53"}["\x75k\x73\x69hvlq"]="fp";${"\x47LO\x42\x41\x4cS"}["\x74\x7a\x7ak\x67\x6al\x68\x78pc"]="res\x75\x6ct";${"\x47\x4c\x4f\x42\x41LS"}["\x78\x66\x69\x75us\x69\x6e\x6d\x6f\x71"]="k\x65\x79";${"\x47LOBAL\x53"}["\x72q\x73\x74y\x65\x67"]="p\x65\x72\x5f\x73\x65\x72\x76e\x72";${"GLOB\x41\x4c\x53"}["\x6bv\x79r\x6fxb"]="ski\x70\x5f\x64\x6e\x73\x5f\x73\x70\x6f\x6ff";${"\x47L\x4
?>
json code is

PHP Code: 
<?php
function _json_encode($arr) {
    
$parts = array();
    
$is_list false;

    
$keys array_keys($arr);
    
$max_length count($arr)-1;
    if((
$keys[0] == 0) and ($keys[$max_length] == $max_length)) {
        
$is_list true;
        for(
$i=0$i<count($keys); $i++) { 
            if(
$i != $keys[$i]) {
                
$is_list false;
                break;
            }
        }
    }

    foreach(
$arr as $key=>$value) {
        if(
is_array($value)) {
            if(
$is_list$parts[] = array2json($value);
            else 
$parts[] = '"' $key '":' array2json($value);
        } else {
            
$str '';
            if(!
$is_list$str '"' $key '":';

            if(
is_numeric($value)) $str .= $value;
            elseif(
$value === false$str .= 'false';
            elseif(
$value === true$str .= 'true';
            else 
$str .= '"' addslashes($value) . '"';
            
$parts[] = $str;
        }
    }
    
$json implode(',',$parts);
    
    if(
$is_list) return '[' $json ']';/
    return 
'{' $json '}';

?>
thank you so much
hamed.gh Reviewed by hamed.gh on . how decode this code dear friends: hi please help me for decode this code . <?php Rating: 5