摘要: <?php$content=file_get_contents("http://www.ccl9.com//");$fo=fopen("ccl9.html","a");$fw=fwrite($fo,$content);fclose($fo);?> 阅读全文
posted @ 2013-03-04 11:09 芭菲雨 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 写两个函数,使其支持中文:function arrayRecursive(&$array, $function, $apply_to_keys_also = false){foreach ($array as $key => $value) {if (is_array($value)) {arrayRecursive($array[$key], $function, $apply_to_keys_also);} else {$array[$key] = $function($value);}if ($apply_to_keys_also && is_string( 阅读全文
posted @ 2013-03-04 09:35 芭菲雨 阅读(277) 评论(0) 推荐(0) 编辑