2013年5月10日
摘要: <?phpfunction arrayRecursive(&$array, $function, $apply_to_keys_also = false){ static $recursive_counter = 0; if (++$recursive_counter > 1000) { die('possible deep recursion attack'); } foreach ($array as $key => $value) { if (is_array($value)) { arrayRecursive($... 阅读全文
posted @ 2013-05-10 17:19 ijoanne 阅读(410) 评论(0) 推荐(0)