上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 24 下一页

2016年2月4日

摘要: 主要检查以下代码: location / { # Redirect everything that isn't a real file to index.php try_files $uri $uri/ /index.php?$args; } 完整代码: server { charset utf-8 阅读全文
posted @ 2016-02-04 16:49 yhdsir 阅读(4373) 评论(0) 推荐(0) 编辑
摘要: 参考网址: Beanstalk:https://github.com/kr/beanstalkd Beanstalk console:https://github.com/ptrofimov/beanstalk_console Yii2-beanstalk:http://www.te.gd/exte 阅读全文
posted @ 2016-02-04 16:47 yhdsir 阅读(1010) 评论(0) 推荐(0) 编辑
摘要: public function rules() { return [ ['username', 'filter', 'filter' => 'trim'], ['username', 'required'], ['username', 'unique', 'targetClass' => '\com 阅读全文
posted @ 2016-02-04 16:44 yhdsir 阅读(1060) 评论(0) 推荐(0) 编辑
摘要: 现在在网站中有这种情况,比如有一个 http://frontend.com/tv 需要根据判断用户的 User Agent ,如果用户是手机浏览器的话,则跳转到 http://mobile.com/tv。 frontend.com 所对应 frontend 应用 mobile.com 对应 mobi 阅读全文
posted @ 2016-02-04 16:43 yhdsir 阅读(713) 评论(0) 推荐(0) 编辑
摘要: namespace common\components; class ResizeImageHelper { public $type;//图片类型 public $width;//实际宽度 public $height;//实际高度 public $resize_width;//改变后的宽度 pu 阅读全文
posted @ 2016-02-04 16:06 yhdsir 阅读(442) 评论(0) 推荐(0) 编辑
摘要: 是不是被用户的行为所困扰? 一个表单用户点击提交按钮了N次,这也导致了数据提交了N次。 为了此受到了测试的欺辱,受到了老板的批评? 不用怕,它就是来拯救你的。 第一步:打开命令行,敲入 composer require light\yii2-lock-form=~1.0.0 第二步:上个厕所 第三步 阅读全文
posted @ 2016-02-04 16:05 yhdsir 阅读(405) 评论(0) 推荐(0) 编辑
摘要: 设置时区 在php.ini中找到data.timezone去掉它前面的;号,然后设置data.timezone = "Asia/Shanghai"; 或者 ini_set('date.timezone','Asia/Shanghai'); 或者 date_default_timezone_set(' 阅读全文
posted @ 2016-02-04 16:02 yhdsir 阅读(557) 评论(0) 推荐(0) 编辑
摘要: 设置Cookie PHP setcookie("name", "Larry",time()+3600 Yii2 $cookies = Yii::$app->response->cookies; $cookies->add(new \yii\web\Cookie([ 'name' => 'name', 阅读全文
posted @ 2016-02-04 15:57 yhdsir 阅读(1491) 评论(0) 推荐(0) 编辑
摘要: 用于API加密,双方约定好signature_key对请求的参数进行处理 处理步骤如下 把请求的数据生成为key=>value的形式,然后拼接生成arg_key arg_key加上双方约定的signature_key进行md5()加密 取得加密后的某一段字符 请求接口时在提交的数据中带上客户端生成t 阅读全文
posted @ 2016-02-04 15:53 yhdsir 阅读(416) 评论(0) 推荐(0) 编辑
摘要: bootstrap http://getbootstrap.com/javascript/#modals https://github.com/lichunqiang/yii2-sweet-submit 阅读全文
posted @ 2016-02-04 15:43 yhdsir 阅读(190) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 24 下一页

导航