1.首先扩展Zend\Captcha\Image,重写一下图片生成过程:img = imagecreatetruecolor($this->width, $this->height); $color = imagecolorallocate($this->img, mt_ran...
分类:
其他好文 时间:
2015-08-05 20:14:05
阅读次数:
127
ZF2提供了图片验证码Zend\Captcha\Image和符号字符验证码Zend\Captcha\Figlet,图片验证码是网站应用中见得比较多的一种验证码,本文以图片验证码为例。...
分类:
其他好文 时间:
2014-12-12 16:43:44
阅读次数:
216
1 // Composer autoloading 2 if (file_exists('vendor/autoload.php')) { // 加载自动加载器 3 $loader = include 'vendor/autoload.php'; 4 } 5 6 if (cl...
分类:
Web程序 时间:
2014-12-03 14:07:50
阅读次数:
271
Application |__ config // 配置文件目录 |__ language // 语言包目录 |__ src |__ Application |__ Contr...
分类:
其他好文 时间:
2014-12-03 13:50:39
阅读次数:
185
1 run(); // 初始化完成应用程序框架开始运行总结:index.php 是安装后原生的版本,无任何修改,内容很简单,自动加载给应用程序框架做运行前的准备工作,然后再 利用 Application:init() 方式来初始化化,init 的参数是引入了配置目录里面的 applicatio...
分类:
Web程序 时间:
2014-12-03 13:50:32
阅读次数:
211
ZF2中发送email有2种方式,一是通过系统的邮件程序发送email,二是通过smtp协议使用远程的smtp服务器发送email。...
分类:
其他好文 时间:
2014-12-02 16:38:32
阅读次数:
220
关于文件上传进度的获取方式,zf2提供了三个类:
Zend\Progressbar\Upload\ApcProgress
Zend\ProgressBar\Upload\SessionProgress
Zend\Progressbar\Upload\UploadProgress
其中SessionProcess要求php5.4以上,本文以SessionProcess为例,其他2个使用方法一样。...
分类:
Web程序 时间:
2014-11-26 18:56:38
阅读次数:
212
ZF2有很多内建的Filter和Validator组件,可以方便地对表单数据进行处理。...
分类:
其他好文 时间:
2014-11-20 22:03:37
阅读次数:
902
ZendFramework2项目中的json和ajax...
分类:
Web程序 时间:
2014-11-17 17:54:24
阅读次数:
220