2013年8月29日
摘要: $fileNames = array(); // 是数组,不是字符串$filesJSON = json_encode($fileNames);// 转成json格式var oldFiles = new Array();//oldFiles = '';// 这样oldFiles成字符串了,而不是json数据oldFiles = JSON.parse('');// JSON格式即为数组格式------------------------------------------------------------------------------------------ 阅读全文
posted @ 2013-08-29 16:42 any91 阅读(1163) 评论(0) 推荐(0) 编辑
摘要: 在php.ini中修改如下变量,如要限制为100Mupload_max_filesize = 100Mpost_max_size = 100M重启Apache 阅读全文
posted @ 2013-08-29 14:22 any91 阅读(181) 评论(0) 推荐(0) 编辑
摘要: _var = $global_var; // 全局常量不可以通过global传入 //global global_const; } }$test = new Test();echo $test->_var;echo $test->_const;?> 阅读全文
posted @ 2013-08-29 11:20 any91 阅读(8274) 评论(0) 推荐(0) 编辑