摘要:
<?php$content=file_get_contents("http://www.ccl9.com//");$fo=fopen("ccl9.html","a");$fw=fwrite($fo,$content);fclose($fo);?> 阅读全文
摘要:
写两个函数,使其支持中文: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( 阅读全文