在用PHPExcel1.8.0来处理excel时,本地测试时好使的,但是要把代码部署到SAE,在上传代码的时候就会遇到这个问题。部署代码中遇到问题: -1:fail to get xml content在网上查了下,好多人在用wordpress和weiPHP的时候也遇到了这个问题,解决办法是,用wo...
分类:
Web程序 时间:
2015-12-12 14:00:25
阅读次数:
211
我们都知道,学习任何一门编程语言,一般来说第一个范例程序就是输出“Hello World”。从今天开始我们来学习weiphp插件开发,也从一个HelloWorld级别的插件开始讲起,因为安装好了的weiphp框架,默认安装了weiphp官方开发的HelloWorld插件,所以这里为了防止跟官方的插件...
分类:
Web程序 时间:
2015-11-21 10:32:39
阅读次数:
210
模型:WeChat(回复参考weiphp)find($mid); } /** * 处理来自微信服务器的消息 * @param $callback * @access public * @return void */ static public...
分类:
微信 时间:
2015-08-31 01:03:36
阅读次数:
371
一、设置host文件二、设置httpd.conf# Virtual hostsInclude conf/extra/httpd-vhosts.conf三、设置httpd-vhosts.conf DocumentRoot "D:\Program Files\wamp\www\weiphp" ...
分类:
Web程序 时间:
2015-07-28 12:46:50
阅读次数:
119
模型:WeChatfind($mid); } /** * 处理来自微信服务器的消息 * @param $callback * @access public * @return void */ static public function pr...
分类:
微信 时间:
2015-07-09 17:43:48
阅读次数:
480
1 model = $this->getModel ( 'survey_answer' ); //获取模型数据 14 15 $param ['survey_id'] = $this->survey_id = intval ( $_REQUEST [...
分类:
Web程序 时间:
2015-07-07 02:05:10
阅读次数:
486
1 _getVoteInfo ( $vote_id ); //获取投票插件的信息 9 10 $canJoin = ! empty ( $openid ) && ! empty ( $token ) && ! ($this->_is_overtime ( ...
分类:
Web程序 时间:
2015-07-02 06:31:08
阅读次数:
249
1 model ['id'] ), 1 ) ); //实例化模型 10 // 获取模型的字段信息 11 $Model = $this->checkAttr ( $Model, $this->model ['id'] ); 12 ...
分类:
Web程序 时间:
2015-07-01 08:34:39
阅读次数:
144
1 model = M ( 'Model' )->getByName ( $_REQUEST ['_controller'] ); //查询model表,获取该插件基本列表信息13 $this->model || $this->error ( '模型不存在!' ); ...
分类:
Web程序 时间:
2015-06-30 01:18:28
阅读次数:
193
1 model = $this->getModel ( 'card_member' ); //通过调用geiModel函数初始化$model11 parent::_initialize (); //调用父类的初始化函数12 }13 // 通用插件...
分类:
Web程序 时间:
2015-06-29 06:12:48
阅读次数:
171