上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 33 下一页

2017年7月10日

让mysql返回的结果按照传入的id的顺序排序

摘要: 比如id为 1,3,5,44,66,32,21,6 那么返回的结果顺序也是这个顺序 $sql = "select * from ".$this->tableName()." where id in ($ids) order by field(id, ".$ids.") "; 阅读全文

posted @ 2017-07-10 17:47 dongruiha 阅读(2580) 评论(0) 推荐(0) 编辑

配置 Nginx 错误页面优雅显示

摘要: [root@localhost ~]# cat /usr/local/nginx/conf/nginx.conf ...... http { location / { root html/www; index index.html index.htm; error_page 400 401 402 403 40... 阅读全文

posted @ 2017-07-10 15:41 dongruiha 阅读(1387) 评论(0) 推荐(0) 编辑

php register_shutdown_function响应error 配合error_get_last 捕获错误

摘要: 转自: http://blog.csdn.net/a757291228/article/details/62231125 阅读全文

posted @ 2017-07-10 15:07 dongruiha 阅读(144) 评论(0) 推荐(0) 编辑

2017年7月6日

ios8唤不起APP的问题

摘要: https://stackoverflow.com/questions/27526966/ios-8-window-location-href-doesnt-work-with-url-scheme ios8下去掉href: 阅读全文

posted @ 2017-07-06 10:44 dongruiha 阅读(271) 评论(0) 推荐(0) 编辑

2017年7月5日

CentOS的SVN服务器搭建与自动部署全过程

摘要: CentOS的SVN服务器搭建与自动部署全过程 http://www.jb51.net/article/106218.htm authz-db = authz 引起的 svn 认证失败 http://blog.csdn.net/txk15619567977/article/details/27061 阅读全文

posted @ 2017-07-05 15:15 dongruiha 阅读(249) 评论(0) 推荐(0) 编辑

laravel多主多从配置示例

摘要: 验证开启MySQL的general-log,通过tail -f的方式监控log变化来确定配置是否生效 阅读全文

posted @ 2017-07-05 13:42 dongruiha 阅读(490) 评论(0) 推荐(0) 编辑

2017年7月4日

phpfpm和nginx设置开机自动启动

摘要: ## 添加执行权限 chmod a+x /etc/init.d/nginx chmod a+x /etc/init.d/php-fpm ## 加入服务 chkconfig --add nginx chkconfig --add php-fpm ## 开机自启 chkconfig nginx on c 阅读全文

posted @ 2017-07-04 11:52 dongruiha 阅读(1979) 评论(0) 推荐(0) 编辑

2017年6月30日

jquery ajax超时设置

摘要: var ajaxTimeoutTest = $.ajax({ url:'', //请求的URL timeout : 1000, //超时时间设置,单位毫秒 type : 'get', //请求方式,get或post data :{}, //请求所传参数,json格式 dataType:'json', 阅读全文

posted @ 2017-06-30 13:53 dongruiha 阅读(206) 评论(0) 推荐(0) 编辑

2017年6月22日

lumen中间件中设置响应header

摘要: middleware([ Illuminate\Session\Middleware\StartSession::class, App\Http\Middleware\VerifyCsrfToken::class, App\Http\Middleware\EncryptCookies::class, App\Http\Middleware\BeforeMiddle... 阅读全文

posted @ 2017-06-22 09:47 dongruiha 阅读(2119) 评论(0) 推荐(0) 编辑

php支持多个地址跨域访问

摘要: //跨域访问的时候才会存在此字段 $origin = isset($_SERVER['HTTP_ORIGIN']) ? $_SERVER['HTTP_ORIGIN'] : ''; $allow_origin = array( 'http://www.a.com', 'http://www.b.com' ); if(in_array($origin, $allow_o... 阅读全文

posted @ 2017-06-22 09:40 dongruiha 阅读(559) 评论(0) 推荐(0) 编辑

上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 33 下一页

导航