打印数组
摘要://打印数组 function print_array(arr){ alert('aa'); for(var key in arr){ if(typeof(arr[key])=='array'||typeof(arr[key])=='object'){//递归调用 print_array(ar...
阅读全文
posted @
2015-10-28 15:08
dinoy
阅读(190)
推荐(0) 编辑
php创建文件并写入信息
摘要:$myfile = fopen("c:\\newfile.txt", "w") or die("Unable to open file!"); $txt = "AAA\n"; fwrite($myfile, $txt); $txt = sizeof($_FILES["picfile"]); fw...
阅读全文
posted @
2015-10-14 14:09
dinoy
阅读(4352)
推荐(0) 编辑