码迷,mamicode.com
首页 >  
搜索关键字:escape    ( 1224个结果
转义序列Escape Sequences及Linux echo命令多种颜色显示
翻阅了很多中文的博文,多数文章是讲echo颜色的用法,本人实在不爱死背,追本溯源,真正看看转义序列是什么?转义字符,学习过C语言的童鞋都知道,著名的printf函数中支持一些控制字符输出,例如\t、\n等。我们通常称它们为转义字符。一、转义序列是什么?1、维基百科(译者怕..
分类:系统相关   时间:2014-07-13 14:16:53    阅读次数:536
十一、mysql输入安全
1.尽量使用“绑定参数”功能,php中可用pdo进行一系列操作2.php可使用mysql_real_escape_string()函数进行输入过滤;
分类:数据库   时间:2014-07-12 00:49:11    阅读次数:166
js 读写cookie。不同路径会储存各自的cookie。而 在v.net环境下读写是在 / 根目录。
所以如果全站不分path 的 话。应该显示的写上 path 。设置为根目录function setCookie(name, value) { document.cookie = name + "=" + escape(value) + ";path=/"; }
分类:Web程序   时间:2014-07-11 12:18:31    阅读次数:237
宽字节注入详解
前言在mysql中,用于转义的函数有addslashes,mysql_real_escape_string,mysql_escape_string等,还有一种情况是magic_quote_gpc,不过高版本的PHP将去除这个特性。首先,宽字节注入与HTML页面编码是无关的,笔者曾经看到就放弃了尝试,...
分类:其他好文   时间:2014-07-09 00:13:58    阅读次数:238
poj3501Escape from Enemy Territory||hdu2337Escape from Enemy Territory
题目链接: 点我点我 点我点我 题目为: Escape from Enemy Territory Time Limit: 5000MS   Memory Limit: 65536K Total Submissions: 2410   Accepted: 661 Description A small group...
分类:其他好文   时间:2014-07-05 23:28:20    阅读次数:206
常用js函数
escapse() 编码函数escape("(") => %28unescape() 解码函数unescape("%29") => )eval() 求值函数eval("11") => 11isNaN() 数值判断函数== is not a numberisNaN(0) => falseisNaN(....
分类:Web程序   时间:2014-07-05 17:41:43    阅读次数:206
ZOJ3640-Help Me Escape
Help Me Escape Time Limit: 2 Seconds      Memory Limit: 32768 KB Background     If thou doest well, shalt thou not be accepted? and if thou doest not well, sin lieth at the door. And unto th...
分类:其他好文   时间:2014-07-05 11:05:59    阅读次数:220
MySql的like语句中的通配符:百分号、下划线和escape
MySql的like语句中的通配符:百分号、下划线和escape %代表任意多个字符 Sql代码 http://blog.csdn.net/yc7369/ select * from user where username like '%huxiao'; select * from user where username like 'huxiao%'; select * ...
分类:数据库   时间:2014-07-03 16:12:41    阅读次数:231
js全局函数
http://www.w3cschool.cc/jsref/jsref-obj-global.html以前没搞懂JS的全局函数,全局函数和window对象的函数不一样。全局函数不属于任何一个内置对象。JS包含以下7个全局函数,用于一些常用的功能:escape(),eval(),isNan(),isF...
分类:Web程序   时间:2014-07-03 13:06:07    阅读次数:375
哪些字符需要urlencode编码?具体怎么处理?
哪些字符需要urlencode编码?具体怎么处理?JS用escape()/encodeURI()/encodeURIComponent()方法编码,用unescape()/decodeURI()/ecodeURIComponent()解码.escape()/encodeURI()/encodeUR....
分类:其他好文   时间:2014-07-02 22:59:57    阅读次数:197
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!