码迷,mamicode.com
首页 >  
搜索关键字:yii memcache    ( 3929个结果
yii源码二 -- interfaces
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
PHP 安装memcache.so 和memcached.so
一、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
Memcached的安装与使用
Windows下的Memcache安装1. 下载memcache的windows稳定版,解压放某个盘下面,比如在c:\memcached2. 在终端(也即cmd命令界面)下输入 c:\memcached\memcached.exe -d install --安装memcached成为服务,这样才能正...
分类:其他好文   时间:2014-07-19 21:26:36    阅读次数:268
yii redirect
redirect 这个方法是在 CController 里定义的先来看下官方介绍redirect()方法public voidredirect(mixed $url, boolean $terminate=true, integer $statusCode=302)$urlmixedthe URL ...
分类:其他好文   时间:2014-07-19 17:38:39    阅读次数:219
将session存入数据库,memcache的方法
//存入数据库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
yii源码三 -- db
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的安装windows下
Yii2的安装第一步:把下载的compser.phar包放在项目根目录下,把yii2的文件也放到项目的根目录下。第二步:dos命令下进入项目目录第三步:使用命令创建yii应用php composer.phar create-project --prefer-dist --stability=dev ...
分类:Windows程序   时间:2014-07-18 14:28:09    阅读次数:648
yii2自动生成表单
视图中:1.要use的两个文件类 use yii\helpers\Html; use yii\widgets\ActiveForm;2.生成表单,以添加商品为例说明。注意红线区域:上传文件需要注意的地方一级表单中有textarea文本域的使用
分类:其他好文   时间:2014-07-18 14:04:16    阅读次数:229
yii2验证码的使用
1.控制器中public function actions() { return [ 'captcha' => [ 'class' => 'yii\captcha\CaptchaAction', 'fixedVerifyCode' => YII_ENV_...
分类:其他好文   时间:2014-07-18 11:36:01    阅读次数:257
yii save model return id null
```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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!