php strtolower : Ã -> Ã
mysql lower : Ã -> ã
月度归档: 2009 年 2 月
mod_negotiation
今天发现网站上的几个文件即使不加扩展名也能够正常访问,如:
www.abc.com/def.htm 这个文件 通过这个URL:www.abc.com/def也能够直接访问。
用cURL看了一下HTTP头:
- E:\>curl -I http://www.abc.com/def
- HTTP/1.1 200 OK
- Date: Sat, 07 Feb 2009 13:23:57 GMT
- Server: Apache
- Content-Location: def.htm
- Vary: negotiate,Accept-Encoding,User-Agent
- TCN: choice
- Last-Modified: Sat, 26 Apr 2008 17:49:07 GMT
- ETag: "d299-1936-4c92aac0;82328840"
- Accept-Ranges: bytes
- Content-Length: 6454
- Cache-Control: max-age=-24777290
- Expires: Sat, 26 Apr 2008 18:49:07 GMT
- Content-Type: text/html
一开始还以为是.htaccess的问题,删除掉,现象依然存在。
继续进主配置文件里翻,找到一个mod_negotiation的模块(遂想到和之前看到的HTTP Headers里面的一个东东很相似:Vary: negotiate)。注释掉相关的东西之后,正常了。:)
关于此模块的详细:http://httpd.apache.org/docs/2.0/mod/mod_negotiation.html
科学
突然想到的:科学这些都是人发现或者发明的,那么即–带有人的属性。
相信科学吗?
tamiflu
达菲
http://www.roche.com.cn/roche/product/pro_4_tamiflu.htm
mark一下
ZigBee 、Mesh
记录一下。
IO测试工具:IOZone : http://www.iozone.org/
电影:Body of Lies (谎言之躯) : http://www.douban.com/subject/2091015/
MySQL的奇怪问题
MySQL : 5.1.22-rc
FreeBSD : 7.0 release
有个表 (MyISAM) 420M大小,内有一mediumtext字段,占据了大部分的空间。
把这个字段删掉之后表大小变成1.1G了。囧死了~~。谁能告诉我这个是怎么回事。-_-~
我不爱吃香菜(芫荽)
嗯,一堆人在这里:http://www.douban.com/group/73609/
php_url_encode
最近几天在折腾网站的url规范化的问题。
对urlencode函数比较好奇,扒出C代码来看了一下。原来是16进制的东东。
Ascii Table : http://www.asciitable.com/
- /* rfc1738:
- …The characters ";",
- "/", "?", ":", "@", "=" and "&" are the characters which may be
- reserved for special meaning within a scheme…
- …Thus, only alphanumerics, the special characters "$-_.+!*'(),", and
- reserved characters used for their reserved purposes may be used
- unencoded within a URL…
- For added safety, we only leave -_. unencoded.
- */
- static unsigned char hexchars[] = "0123456789ABCDEF";
- /* {{{ php_url_encode
- */
- PHPAPI char *php_url_encode(char const *s, int len, int *new_length)
- {
- register unsigned char c;
- unsigned char *to, *start;
- unsigned char const *from, *end;
- from = s;
- end = s + len;
- start = to = (unsigned char *) safe_emalloc(3, len, 1);
- while (from < end) {
- c = *from++;
- if (c == ‘ ‘) {
- *to++ = ‘+‘;
- #ifndef CHARSET_EBCDIC
- } else if ((c < ‘0‘ && c != ‘–‘ && c != ‘.‘) ||
- (c < ‘A‘ && c > ‘9‘) ||
- (c > ‘Z‘ && c < ‘a‘ && c != ‘_‘) ||
- (c > ‘z‘)) {
- to[0] = ‘%‘;
- to[1] = hexchars[c >> 4];
- to[2] = hexchars[c & 15];
- to += 3;
- #else /*CHARSET_EBCDIC*/
- } else if (!isalnum(c) && strchr("_-.", c) == NULL) {
- /* Allow only alphanumeric chars and ‘_‘, ‘–‘, ‘.‘; escape the rest */
- to[0] = ‘%’;
- to[1] = hexchars[os_toascii[c] >> 4];
- to[2] = hexchars[os_toascii[c] & 15];
- to += 3;
- #endif /*CHARSET_EBCDIC*/
- } else {
- *to++ = c;
- }
- }
- *to = 0;
- if (new_length) {
- *new_length = to – start;
- }
- return (char *) start;
- }
- /* }}} */
休假纪(四)一句话
生活教会你如何生活
2009-2-2
心态发生了很好的转变
生命快乐