摘要:
更改Apache的php.ini的配置 In my php.ini (created custom ini file in public_html) would this solve this problem, how much would I have to set it to around 1G 阅读全文
摘要:
一、URL规则 1、默认是区分大小写的 2、如果我们不想区分大小写可以改配置文件 'URL_CASE_INSENSITIVE'=>true, //url不区分大小写 3、如果模块名为 UserGroupAction 那么url找模块就必要要写成 http://localhost/thinkphp4/ 阅读全文
摘要:
正的framework(大量使用) thinkphp(部分使用) cakephpyii(极少使用) [一]函数 1:函数的声明:每个函数的第一行都是函数开头,有声明函数的关键字function、函数名和参数列表三部分组成。 2:函数的调用: function table(){ ... .... }; 阅读全文
摘要:
(1) $model = M(); $info = $model->table('vote_info')->alias('v') ->field('v.*, u.real_name, g.group_name') ->join('user_info as u on v.user_id = u.id' 阅读全文
摘要:
//导出表格public function get_exel($fileName,$headArr,$list){//导入PHPExcel类库,因为PHPExcel没有用命名空间,只能import导入import("Org.Util.PHPExcel");import("Org.Util.PHPExcel.Writer.Excel5");import("Org.Util.PHPExcel.IOFa... 阅读全文