上一页 1 2 3 4 5 6 ··· 15 下一页
摘要: ⌘——Command ⌃ ——Control ⌥——Option/Alt ⇧——Shift ⇪——Caps Lock fn——功能键就是fn 编辑 Command+alt+T 用 (if..else, try..catch, for, etc.)包住Command+/ 注释/取消注释的行注释Comm 阅读全文
posted @ 2016-03-17 10:59 derrck 阅读(34276) 评论(4) 推荐(3) 编辑
摘要: MAC OSX Homebrew安装方法也很简单:打开终端,然后输入命令 对,就是这么简单一条命令就可以将神器Homebrew安装好. 安装MongoDB MongoDB是一个基于分布式文件存储的数据库。由C++语言编写。旨在为WEB应用提供可扩展的高性能数据存储解决方案。 MongoDB是一个介于 阅读全文
posted @ 2016-03-16 14:20 derrck 阅读(1033) 评论(0) 推荐(0) 编辑
摘要: 先说什么是Swagger, Swagger的使用目的是方便优美的呈现出接口API的各种定义, 生成API文档, 包括参数, 路径之类. 有时后端改了API的参数或者其他设置, 前端直接看这个Swagger UI就可以, 方便项目管理和团队协作. 官网: http://swagger.io/ 参数文档 阅读全文
posted @ 2016-03-02 14:51 derrck 阅读(39981) 评论(0) 推荐(1) 编辑
摘要: 我的YII2版本是2.0.7, 设置多语言时和其他教程有不同的地方, 所以整理如下 1. 在一个controller里面写一个调用i18n的语句, 比如actionIndex echo \Yii::t('app', 'whatisthis'); 现在进入这个页面, 页面输出whatisthis 2. 阅读全文
posted @ 2016-02-24 17:50 derrck 阅读(5994) 评论(0) 推荐(0) 编辑
摘要: 搭建新的目录结构详细点击这里 搭建Restful API 点击这里 1.开发环境操作系统 Windows Server 2012 R2 DatacenterPHP架构 Apache版UPUPW PHP5.4编程软件 Zend Studio 12.0.22.环境配置解压缩UPUPW到D盘根目录,分别在 阅读全文
posted @ 2016-02-23 17:10 derrck 阅读(1218) 评论(0) 推荐(0) 编辑
摘要: yii2 Class 'app\controllers\AccessControl' not found 一般是命名空间问题, 写成\yii\filters\AccessControl::className(), yii2想要新增第三方vendor, 修改composer.json, 加入了"zir 阅读全文
posted @ 2016-02-23 15:01 derrck 阅读(920) 评论(0) 推荐(0) 编辑
摘要: 先下载PHP扩展Xdebug https://xdebug.org, 可以复制自己的phpinfo粘贴到https://xdebug.org/wizard.php中, 会生成需要下载的版本, php.ini的设置语句. 下载好之后放入php目录的ext文件夹中, 然后设置php.ini, 在最后加上 阅读全文
posted @ 2016-02-17 17:01 derrck 阅读(40344) 评论(3) 推荐(5) 编辑
摘要: 属性: public function __get($name) // 这里$name是属性名 { $getter = 'get' . $name; // getter函数的函数名 if (method_exists($this, $getter)) { return $this->$getter( 阅读全文
posted @ 2016-02-13 22:22 derrck 阅读(388) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2016-01-10 22:32 derrck 阅读(0) 评论(0) 推荐(0) 编辑
摘要: PHP裁剪图片$src_path = '1.jpg';//创建源图的实例$src = imagecreatefromstring(file_get_contents($src_path)); //裁剪开区域左上角的点的坐标$x = 100;$y = 12;//裁剪区域的宽和高$width = 200... 阅读全文
posted @ 2015-12-28 15:28 derrck 阅读(260) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 15 下一页