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
一、memcache.so 的安装wget http://pecl.php.net/get/memcache-2.2.7.tgztar zxvf memcache-2.2.7.tgz./configure --enable-memcache --with-php-config=/usr/local/...
分类:
Web程序 时间:
2014-07-22 22:51:53
阅读次数:
813
Windows下的Memcache安装1. 下载memcache的windows稳定版,解压放某个盘下面,比如在c:\memcached2. 在终端(也即cmd命令界面)下输入 c:\memcached\memcached.exe -d install --安装memcached成为服务,这样才能正...
分类:
其他好文 时间:
2014-07-19 21:26:36
阅读次数:
268
redirect 这个方法是在 CController 里定义的先来看下官方介绍redirect()方法public voidredirect(mixed $url, boolean $terminate=true, integer $statusCode=302)$urlmixedthe URL ...
分类:
其他好文 时间:
2014-07-19 17:38:39
阅读次数:
219
//存入数据库name=$name; $this->color=$color; }}$hot=new Hot('xiaobei','white');$_SESSION['hot']=$hot;?>Get_ini_session.phpname=$name; $this->color=$color;....
分类:
数据库 时间:
2014-07-19 00:14:11
阅读次数:
336
CDbConnection:path:/framework/db/CDbConnection.phpoverview:CDbConnection represents a connection to a database.工作原理:CDbConnection works together with ...
分类:
数据库 时间:
2014-07-18 18:38:26
阅读次数:
196
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