%:匹配零个及多个任意字符; _:与任意单字符匹配; []:匹配一个范围; [^]:排除一个范围 ;-:连字符 Symbol Meaning like '5[%]' 5% like '[_]n' _n like '[a-cdf]' a, b, c, d, or f like '[-acdf]' -, ...
分类:
数据库 时间:
2017-06-01 13:21:42
阅读次数:
247
最近在看一部php的基础视频教程,在做案例的时,当通过用户名查询用户信息的时候,先使用了转义函数对客户提交的内容进行过滤之后再交给sql语句进行后续的操作。虽然能看到转义函数本身的作用,但是仍然有一些疑惑。 疑惑一:当转义数据后,数据中会增加一些反斜杠,为了能查找出对应的数据,那么原来存在数据库中的 ...
分类:
数据库 时间:
2017-05-30 18:02:20
阅读次数:
288
写几组数据就会发现规律了啊。。但是我是竖着看的。。。还找了半天啊、、、 只是要用高精度来写,水题啊。就当熟悉一下java了啊。 num[i] = 2*num[i-1]-num[i-2-k]。 1513. Lemon Tale Time limit: 1.0 second Memory limit: ...
分类:
其他好文 时间:
2017-05-30 16:23:31
阅读次数:
280
1、Oracle 特殊字符 转义 关键词:oracle 转义 环境:oracle9i plsql 在plsql里边执行: update userinfo set pageurl='myjsp?page=1&pagesize=10' where id='test' 这条sql语句往数据库的pageur ...
分类:
数据库 时间:
2017-05-30 00:35:24
阅读次数:
264
Description There are N guests checking in at the front desk of the hotel. 2K (0 ≤ 2K ≤ N) of them are twins.There are M rooms available. Each room ha ...
分类:
其他好文 时间:
2017-05-28 14:58:56
阅读次数:
208
一://系统当前时间 function show(){ var mydate = new Date(); var str = "" + mydate.getFullYear() + "年"; str += (mydate.getMonth()+1) + "月"; str += mydate.getD ...
分类:
Web程序 时间:
2017-05-27 13:37:22
阅读次数:
181
brownies 核仁巧克力饼 toast 烤面包 dining room 餐厅 practical 实用的 meal 一餐 combination 组合 pancake 薄煎饼 waffle 华夫饼干 donut 甜甜圈 bacon 熏肉 bagel 百吉饼 muffin 英格兰松饼 omelet ...
分类:
其他好文 时间:
2017-05-22 23:20:59
阅读次数:
287
js对文字进行编码涉及3个函数:escape,encodeURI,encodeURIComponent,相应3个解码函数:unescape,decodeURI,decodeURIComponent 1、 传递参数时需要使用encodeURIComponent,这样组合的url才不会被#等特殊字符截断 ...
分类:
编程语言 时间:
2017-05-22 22:17:03
阅读次数:
147
if ( ! function_exists('error')) { /** * 错误跳转 */ function error($mes, $url) { echo '<script type="text/javascript">alert("'.html_escape($mes).'");hist ...
分类:
其他好文 时间:
2017-05-22 22:09:48
阅读次数:
162