上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 75 下一页
摘要: https://www.cnblogs.com/kevingrace/p/5896706.html 使用下面的关系区别这两个操作:git pull = git fetch + git mergegit pull --rebase = git fetch + git rebase 现在来看看git m 阅读全文
posted @ 2018-07-20 15:13 浮尘微光 阅读(6890) 评论(0) 推荐(0) 编辑
摘要: http://php.net/manual/zh/function.debug-backtrace.php debug_backtrace (PHP 4 >= 4.3.0, PHP 5, PHP 7) debug_backtrace — 产生一条回溯跟踪(backtrace) debug_backt 阅读全文
posted @ 2018-07-13 10:09 浮尘微光 阅读(517) 评论(0) 推荐(0) 编辑
摘要: union all select *,'1' as category from table1001 where price > 10union allselect *,'2' as category from table1002 where price > 10union allselect *,' 阅读全文
posted @ 2018-07-09 10:35 浮尘微光 阅读(22568) 评论(0) 推荐(0) 编辑
摘要: 手动注册 命名空间.利用application/config.php配置文件来注册命名空间1:在application目录同级创建一个myExtend文件夹,里面再创建一个myTest文件夹.里面放一个myTest.php,里面写<?phpnamespace myTest;class myTest{ 阅读全文
posted @ 2018-07-04 12:53 浮尘微光 阅读(910) 评论(0) 推荐(0) 编辑
摘要: 环境说明 - CentOS 7.x 最小安装 - 配置网络连接 1. 安装Git及创建用户 # 安装Git $ yum install git # 创建一个git用户组和用户,用来运行git服务 $ groupadd git $ adduser git -g git 禁止git用户登录: 修改/et 阅读全文
posted @ 2018-07-03 17:49 浮尘微光 阅读(268) 评论(0) 推荐(0) 编辑
摘要: 对于我们程序员来说,不管你是大神,还是小鱼小虾,进入公司之后,都用过源码管理工具,不然你就不是一个合格的程序员,现在各个公司用于源码管理工具通常有下面两种: git:使用git的公司应该是最多的。 svn:现在使用svn的公司比重也挺大的,但是svn有局限性。 当然,他们两者的区别,在这里就不做解释 阅读全文
posted @ 2018-06-27 20:38 浮尘微光 阅读(1836) 评论(0) 推荐(0) 编辑
摘要: 首先,需要在 ~/.atom目录下创建 .atom文件,写入如下内容: 然后保存,打开Atom:Packages --> Settings View --> Install Packages/Themes 搜索“PHP”即可: 阅读全文
posted @ 2018-06-22 18:22 浮尘微光 阅读(449) 评论(0) 推荐(0) 编辑
摘要: 1、下载软件最好的地址就是官网了下载地址 选择好系统版本以后点击DOWNLOAD 下载Webstorm 下载Webstorm 2、安装双击下载好的安装包、将WebStromt拖入application文件夹,然后在Launchpad中找到并打开 安装.png 安装.png 3、等待一段时间后,Web 阅读全文
posted @ 2018-06-22 14:13 浮尘微光 阅读(693) 评论(0) 推荐(0) 编辑
摘要: /** * 获取 post 参数; 在 content_type 为 application/json 时,自动解析 json * @return array */ private function initPostData() { if (empty($_POST) && false !== strpos($this->conten... 阅读全文
posted @ 2018-06-19 22:37 浮尘微光 阅读(24156) 评论(0) 推荐(2) 编辑
摘要: mysqldump 导出统一限制每张数据表导出的记录数 在工作过程中,需要将生产的数据导出到本地开发环境,我希望可以导出部分数据.而服务器数据量比较大(上千万),如果选择直接从服务器导出数据, 正在运行的应用可能受到影响,导出的时候应用不能正常的访问。 于是我希望可以导出部分数据足够测试环境使用就可 阅读全文
posted @ 2018-06-19 21:58 浮尘微光 阅读(1825) 评论(0) 推荐(0) 编辑
上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 75 下一页