如何将这个PHP代码转换为正常的外观?

时间:2012-03-31 15:47:27

标签: php obfuscation global decode

如何将此PHP代码转换为正常外观? 代码起始$GLOBALS['_1838807304_']=Array('strtolower','' .'file' .'_ex' .'ist' .'s','' .'mt_rand','f' .'ile_' .'e' .'x' .'ist' .'s','h' .'e' .'a' .'der','define','' .'po' .'s','mb_internal_e' .'nc' .'oding','define','' .'di' .'rname','' .'d' .'efine','' .'s' .'es' .'sio' .'n_s' .'t' .'art','strpo' .'s','preg_replace','cou' .'nt','h' .'ead' .'er','o' .'b' .'_sta' .'rt',

此处的完整来源[Source Code]

2 个答案:

答案 0 :(得分:3)

使用:

print_r($GLOBALS['_1838807304_']);

或者更好:

echo '<pre>' . print_r($GLOBALS['_1838807304_'], true) . '</pre>';

答案 1 :(得分:0)

echo implode($GLOBALS['_1838807304_']);

应该内爆数组并将数组的内容作为一个字符串

返回