path:framework/base/interfaces.phpoverview:This file contains core interfaces for Yii framework.interface IApplicationComponent:all application compon...
分类:
其他好文 时间:
2014-07-22 22:55:14
阅读次数:
165
Yii2的安装第一步:把下载的compser.phar包放在项目根目录下,把yii2的文件也放到项目的根目录下。第二步:dos命令下进入项目目录第三步:使用命令创建yii应用php composer.phar create-project --prefer-dist --stability=dev ...
视图中:1.要use的两个文件类 use yii\helpers\Html; use yii\widgets\ActiveForm;2.生成表单,以添加商品为例说明。注意红线区域:上传文件需要注意的地方一级表单中有textarea文本域的使用
分类:
其他好文 时间:
2014-07-18 14:04:16
阅读次数:
229
1.控制器中public function actions() { return [ 'captcha' => [ 'class' => 'yii\captcha\CaptchaAction', 'fixedVerifyCode' => YII_ENV_...
分类:
其他好文 时间:
2014-07-18 11:36:01
阅读次数:
257
```php /** * Creates a new model. * If creation is successful, the browser will be redirected to the 'view' page. */ public function actionCreate()...
分类:
其他好文 时间:
2014-07-18 08:35:27
阅读次数:
250
###download and config- download yii-1.1.12- unzip into yii-1.1.12- config yii-1.1.12 dir an apache httpdoc dir###check yii requirementshttp://hostnam...
CComponent:path:framework/base/CComponent.phpoverview:This file contains the foundation classes for component-based and event-driven programming. ...
分类:
其他好文 时间:
2014-07-16 16:03:00
阅读次数:
180
一般情况下,yii框架的CActiveForm组建的提示是英文的,把它改成中文提示首先在main.php配置文件中,设置'language'=>'zh_cn';这样将会使得cannot be blank显示为不能为空然后再到相应的模型中添加相应的中文注释,这样,提示都将变成中文提示。
分类:
其他好文 时间:
2014-07-16 15:19:26
阅读次数:
221
array(array(‘username’, ‘required’),array(‘username’, ‘length’, ‘min’=>3, ‘max’=>12),array(‘password’, ‘compare’, ‘compareAttribute’=>’password2′, ‘on...
分类:
其他好文 时间:
2014-07-13 11:57:16
阅读次数:
431
1、开启apache的mod_rewrite模块#去掉LoadModulerewrite_modulemodules/mod_rewrite.so前的“#”符号
#如果是ubuntu系统,系统默认是开启rewrite的
cd/etc/apache2/mods-enabled
#查看是否有rewrite.load链接文件,如果没有则建立链接文件
cd/etc/apache2/mods-enabled
ln-s../..
分类:
Web程序 时间:
2014-07-10 19:17:11
阅读次数:
286