摘要:
$fileNames = array(); // 是数组,不是字符串$filesJSON = json_encode($fileNames);// 转成json格式var oldFiles = new Array();//oldFiles = '';// 这样oldFiles成字符串了,而不是json数据oldFiles = JSON.parse('');// JSON格式即为数组格式------------------------------------------------------------------------------------------ 阅读全文
摘要:
在php.ini中修改如下变量,如要限制为100Mupload_max_filesize = 100Mpost_max_size = 100M重启Apache 阅读全文
摘要:
_var = $global_var; // 全局常量不可以通过global传入 //global global_const; } }$test = new Test();echo $test->_var;echo $test->_const;?> 阅读全文