上一页 1 ··· 36 37 38 39 40 41 42 43 44 ··· 48 下一页
摘要: http://developer.51cto.com/art/201105/263103.htm 细说PHP中strlen和mb_strlen的区别 在php中常见的计算字符串长度的函数有:strlen和mb_strlen.当字符全是英文字符的时候,两者是一样。这里主要比较一下,中英文混排的时候,两 阅读全文
posted @ 2018-04-20 07:58 仁义礼智信的 阅读(95) 评论(0) 推荐(0)
摘要: 创建数据库,删除数据库 create database databasename charset utf8 collate utf8_general_ci;设置字符集utf8,校对规则utf8_general_ci drop database databasename; 创建表,删除表 create 阅读全文
posted @ 2018-04-14 23:46 仁义礼智信的 阅读(161) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2018-04-14 23:03 仁义礼智信的 阅读(258) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/rzq228/article/details/71516912 阅读全文
posted @ 2018-04-14 13:42 仁义礼智信的 阅读(1112) 评论(0) 推荐(0)
摘要: var a = 0 ||'sda';console.log(a);//sda var a = '' ||'sda';console.log(a);//sda 阅读全文
posted @ 2018-03-29 16:19 仁义礼智信的 阅读(157) 评论(0) 推荐(0)
摘要: $code = 'code'; $patt = "/^[1-9]\d{5}(19|20)\d{2}((0[1-9])|(10|11|12))([012](\d|(30|31)))\d{3}[xX\d]$/"; preg_match_all($patt, $code, $match); if(!emp 阅读全文
posted @ 2018-03-29 16:09 仁义礼智信的 阅读(127) 评论(0) 推荐(0)
摘要: encodeURIComponet('新品') = '%E6%96%B0%E5%93%81' decodeURIComponent('%E6%96%B0%E5%93%81') 阅读全文
posted @ 2018-03-29 09:17 仁义礼智信的 阅读(744) 评论(0) 推荐(0)
摘要: 一:开始Nginx的SSL模块 1.1 Nginx如果未开启SSL模块,配置Https时提示错误 1 nginx: [emerg] the "ssl" parameter requires ngx_http_ssl_module in /usr/local/nginx/conf/nginx.conf 阅读全文
posted @ 2018-03-23 16:52 仁义礼智信的 阅读(7962) 评论(0) 推荐(0)
摘要: https://www.wn789.com/11468.html 阅读全文
posted @ 2018-03-23 14:46 仁义礼智信的 阅读(442) 评论(0) 推荐(0)
摘要: # 典型配置 location ~ \.php$ { root html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $DOCUMENT_ROOT$fastcgi_scrip 阅读全文
posted @ 2018-03-23 10:58 仁义礼智信的 阅读(129) 评论(0) 推荐(0)
上一页 1 ··· 36 37 38 39 40 41 42 43 44 ··· 48 下一页