摘要: 转自: http://en.wikipedia.org/wiki/List_of_HTTP_status_codesList of HTTP status codesThe following is a list of HyperText Transfer Protocol (HTTP) response status codes. This includes codes from IETF in... 阅读全文
posted @ 2011-08-25 22:49 Lux.Y 阅读(586) 评论(0) 推荐(0)
摘要: Sometimes it is not as straightforward as one may think to get the current url to use it inside your application. Here is a snippet that I use to fetch the current URL and use it in a script. The current url (whether http or https) is now a local variable that you can do with as you please.$url = (! 阅读全文
posted @ 2011-08-25 21:43 Lux.Y 阅读(674) 评论(0) 推荐(0)
摘要: 几个巨牛的网站:作web开发要是不知道它们,那想做出nb的网站估计困难!960grid:http://960.gs/ 它把网页设定为960帧,分为12个columns.typekit:http://typekit.com/libraries/full 设置相关字体,可以把喜欢的字体下载到本地cufon:http://cufon.shoqolate.com/generate/ 用javascript设定特殊字体RSS 订阅: http://www.feedsky.com/Top 10 Free Tools to Create RSS for Any Websitejs: http://www.d 阅读全文
posted @ 2011-08-25 21:11 Lux.Y 阅读(419) 评论(0) 推荐(0)
摘要: $returnUrl = rawurlencode(base64_encode($returnUrl)); //编码 $returnUrl = parse_str(base64_decode($returnUrl));//解码 或者$returnUrl = base64_decode($returnUrl);//解码//或者//不知道为何, 上面第一种解码方式返回的是null, 求解$returnUrl = base64_encode($returnUrl); //编码$returnUrl = base64_decode($returnUrl);//解码 这是一种方式,但... 阅读全文
posted @ 2011-08-25 16:39 Lux.Y 阅读(6251) 评论(1) 推荐(0)