手机浏览 RSS 2.0 订阅 膘叔的简单人生 , 腾讯云RDS购买 | 超便宜的Vultr , 注册 | 登陆
浏览模式: 标准 | 列表查看akuma的文章

常用设置网页编码的方法

非常方便:

Perl. Output the correct header before any part of the actual page. After the last header, use a double linebreak, e.g.:
print "Content-Type: text/html; charset=utf-8\n\n";

Python. Use the same solution as for Perl (except that you don't need a semicolon at the end).

PHP. Use the header() function before generating any content, e.g.:
header('Content-type: text/html; charset=utf-8');

Java Servlets. Use the setContentType method on the ServletResponse before obtaining any object (Stream or Writer) used for output, e.g.:
resource.setContentType ("text/html;charset=utf-8");
If you use a Writer, the Servlet automatically takes care of the conversion from Java Strings to the encoding selected.

JSP. Use the page directive e.g.:
<%@ page contentType="text/html; charset=UTF-8" %>
Output from out.println() or the expression elements (<%= object%>) is automatically converted to the encoding selected. Also, the page itself is interpreted as being in this encoding.

ASP and ASP.Net. ContentType and charset are set independently, and are methods on the response object. To set the charset, use e.g.:
<%Response.charset="utf-8"%>
In ASP.Net, setting Response.ContentEncoding will take care both of the charset parameter in the HTTP Content-Type as well as of the actual encoding of the document sent out (which of course have to be the same). 

The default can be set in the globalization element in Web.config (or Machine.config, which is originally set to UTF-8).

首页访问速度怎么样?(调查一个月)

 第一次访问我的首页的时候,可能会触发一个连接广告的代码,是远程的链接。所以会有点卡。大约要0.3秒左右 ,后面我做了cookie和session的保存,时间设为了300秒,即5分钟。这时候你再刷新的话,黑黑,一下子就成了0.004左右了。

这次的VPS是换成了99vps.net的xen,2G内存。说起来,昨天我想再买一个的时候,发现他们的512M的VPS已经卖完了,1G的也只剩2个额了。

网上应该有很多促销码吧。不过,据99vps的人说,他们准备取消低内存的用户,尽量做高端的,因为高端的都会寻求稳定,而低端用户都是折腾折腾就跑路的,大家都累。

当然,我也希望是这样,我就可以安心的用VPS了。毕竟这一回用下来还算比较爽的。

root@MyDebian64Bit:~# dd if=/dev/zero of=/root/zerofile bs=1M count=256
256+0 records in
256+0 records out
268435456 bytes (268 MB) copied, 0.410745 s, 654 MB/s

这是好是坏是说清,自己感觉吧。

---------

测试完后,请留言给个回复,谢谢

转一个小图

 看到这个图的时候,你没有想过要笑还是要哭 ?

当第一次产品设计拿到的时候,和规划的时候,时间是不是都帮你定好了?但实际开发的时候,各种各样的事情,各种各样新的计划接踵而至,导致计划赶不上变化。最后就真的成了图下的情况,但客户真的是都是开心的吗?
大小: 199.98 K
尺寸: 488 x 376
浏览: 1534 次
点击打开新窗口浏览全图
如果你是客户,你会开心吗?
如果你提开发,你会开心吗?

xcache...

 好吧,我感觉又被xcache骗了。当然也可能是他们没注意吧。

在网站上,他们说:
修复版本. XCache admin 页面有大量改进, 增加 namespace 支持, 等等. 更新 API, 新增了一些 INI 设置. 新增 "诊断" 模块给出一些专家级建议 (htdocs 中). 进程异常时自动禁用缓存 (运行期间). 警告: 本版本开始使用 extension= 来加载 XCache. 不再支持采用 zend_extension= 方式加载.
 
其实我也不太敢说他们不好,上次我说:xcache 发布3.0版本, moo过来说了两句关于大版本更新的事。
再接着说上面的那句警告:本版本开始使用Extension那句
OK,当我装完的时候:
XML/HTML代码
  1. root@MyDebian64Bit:~/xcache-3.0.0# make install  
  2. Installing shared extensions:     /usr/lib/php5/20090626/  
你看,成功了,但是看了一下xcache.ini。。。
XML/HTML代码
  1. [xcache-common]  
  2. ;; install as zend extension (recommended), normally "$extension_dir/xcache.so"  
  3. zend_extension = /usr/lib/php5/20090626/xcache.so  
一下子就与说明不太一致了

纠结:好象orca.io被墙了?

 本来觉得orca.io这个免费的cdn还是不错的,用了一个月也确实觉得还行。结果。。。怎么这么快就被墙了呢?我晕啊。。

 
可怜的v2ex,你做什么不被墙啊?
感慨一下。没有什么其他的想法。不过我已经想到一个cdn的地方了。黑黑

Tags: cdn

Records:321234567