<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://rss.jeff-chen.com/styles/feedsky1.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:gr="http://www.google.com/schemas/reader/atom/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://rss.jeff-chen.com" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feed.feedsky.com/sharer" type="application/rss+xml"></fs:self_link><lastBuildDate>Thu, 20 Oct 2011 06:16:26 GMT</lastBuildDate><title>Jeff's Share</title><description>Jeff’s Share Feed.</description><image><url>http://www.feedsky.com/feed/sharer/sc/gif</url><title>Jeff's Share</title></image><generator xmlns="http://www.w3.org/2005/Atom" uri="http://www.google.com/reader">Google Reader</generator><id xmlns="http://www.w3.org/2005/Atom">tag:google.com,2005:reader/user/04568479978967443037/label/Sharer</id><link xmlns="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/"></link><gr:continuation>CMen5O-tyKkC</gr:continuation><link xmlns="http://www.w3.org/2005/Atom" rel="self" href="http://www.google.com/reader/public/atom/user%2F04568479978967443037%2Flabel%2FSharer"></link><author xmlns="http://www.w3.org/2005/Atom"><name>Jeff</name></author><pubDate>Thu, 20 Oct 2011 06:44:52 GMT</pubDate><managingEditor>Jeff</managingEditor><item><title>加深了解 WordPress 的主题功能文件 functions.php</title><link atom:type="text/html">http://www.jeff-chen.com/wordpress-theme-features-a-better-understanding-of-file-functions-php/</link><id xmlns="http://www.w3.org/2005/Atom" gr:original-id="http://www.jeff-chen.com/?p=1771">tag:google.com,2005:reader/item/60ea5e34c64ca9aa</id><content xmlns="http://www.w3.org/2005/Atom" xml:base="http://www.jeff-chen.com/" type="html">&lt;p&gt;functions.php文件是一个所有主题都需要配备的文件，很多时候我们可以在里面添加各种函数以实现我们对WordPress的不同需求。下面是一些比较实用的函数，按需添加。&lt;br&gt;
[ccIlW_php highlight=&quot;&quot;]&lt;br&gt;
//禁用l10n.js&lt;br&gt;
wp_deregister_script('l10n');&lt;br&gt;
//移除管理员工具条(或:后台也有设置项)&lt;br&gt;
remove_action('init','wp_admin_bar_init');&lt;br&gt;
//禁用自动保存草稿&lt;br&gt;
wp_deregister_script('autosave');&lt;br&gt;
//禁用修改历史记录&lt;br&gt;
remove_action('pre_post_update','wp_save_post_revision');&lt;br&gt;
//禁止在head泄露wordpress版本号&lt;br&gt;
remove_action('wp_head','wp_generator');&lt;br&gt;
//移除head中的rel=&quot;EditURI&quot;&lt;br&gt;
remove_action('wp_head','rsd_link');&lt;br&gt;
//移除head中的rel=&quot;wlwmanifest&quot;&lt;br&gt;
remove_action('wp_head','wlwmanifest_link');&lt;br&gt;
//禁止半角符号自动变全角&lt;br&gt;
foreach(array('comment_text','the_content','the_excerpt','the_title') as $xx)&lt;br&gt;
remove_filter($xx,'wptexturize');&lt;br&gt;
//禁止自动给文章段落添加&amp;amp;amp;lt;p&amp;amp;amp;gt;标签&lt;br&gt;
remove_filter('the_content','wpautop');&lt;br&gt;
remove_filter('the_excerpt','wpautop');&lt;br&gt;
//禁止自动把'Wordpress'之类的变成'WordPress'&lt;br&gt;
remove_filter('comment_text','capital_P_dangit',31);&lt;br&gt;
remove_filter('the_content','capital_P_dangit',11);&lt;br&gt;
remove_filter('the_title','capital_P_dangit',11);&lt;br&gt;
//评论跳转链接添加nofollow&lt;br&gt;
function nofollow_compopup_link(){&lt;br&gt;
  return' rel=&quot;nofollow&quot;';&lt;br&gt;
}&lt;br&gt;
add_filter('comments_popup_link_attributes','nofollow_compopup_link');&lt;br&gt;
/*回复某人链接添加nofollow&lt;br&gt;
这个理应是原生的, 可是在wp某次改版后被改动了,&lt;br&gt;
现在是仅当开启注册回复时才有nofollow,否则需要自己手动了*/&lt;br&gt;
function nofollow_comreply_link($link){&lt;br&gt;
  return str_replace(&amp;#39;&amp;amp;amp;lt;a&amp;#39;,&amp;#39;&amp;amp;amp;lt;a rel=&amp;quot;nofollow&amp;quot;&amp;#39;,$link);&lt;br&gt;
}&lt;br&gt;
get_option('comment_registration')||&lt;br&gt;
add_filter('comment_reply_link','nofollow_comreply_link');&lt;br&gt;
[/ccIlW_php]&lt;/p&gt;
© 2004-2011 &lt;a href=&quot;http://www.jeff-chen.com&quot;&gt;Jeff-Chen.Com&lt;/a&gt; 版权所有 |
&lt;a href=&quot;http://www.jeff-chen.com/wordpress-theme-features-a-better-understanding-of-file-functions-php/&quot;&gt;文章链接&lt;/a&gt; |
&lt;strong&gt;&lt;a href=&quot;http://www.jeff-chen.com/wordpress-theme-features-a-better-understanding-of-file-functions-php/#respond&quot;&gt;1 条评论&lt;/a&gt;&lt;/strong&gt;
&lt;br&gt;
关键词: &lt;a href=&quot;http://www.jeff-chen.com/tag/wordpress/&quot; rel=&quot;tag&quot;&gt;WordPress&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/code/&quot; rel=&quot;tag&quot;&gt;代码&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/technology/&quot; rel=&quot;tag&quot;&gt;技术&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/tutorials/&quot; rel=&quot;tag&quot;&gt;教程&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/template/&quot; rel=&quot;tag&quot;&gt;模板&lt;/a&gt;
&lt;hr&gt;
收藏: &lt;a href=&quot;http://shuqian.qq.com/post?title=%E5%8A%A0%E6%B7%B1%E4%BA%86%E8%A7%A3%20WordPress%20%E7%9A%84%E4%B8%BB%E9%A2%98%E5%8A%9F%E8%83%BD%E6%96%87%E4%BB%B6%20functions.php&amp;amp;uri=http://www.jeff-chen.com/wordpress-theme-features-a-better-understanding-of-file-functions-php/&quot; rel=&quot;nofollow&quot;&gt;QQ书签&lt;/a&gt;, &lt;a href=&quot;http://www.google.com/bookmarks/mark?op=edit&amp;amp;bkmk=http://www.jeff-chen.com/wordpress-theme-features-a-better-understanding-of-file-functions-php/&amp;amp;title=%E5%8A%A0%E6%B7%B1%E4%BA%86%E8%A7%A3%20WordPress%20%E7%9A%84%E4%B8%BB%E9%A2%98%E5%8A%9F%E8%83%BD%E6%96%87%E4%BB%B6%20functions.php&quot; rel=&quot;nofollow&quot;&gt;Google书签&lt;/a&gt;, &lt;a href=&quot;http://cang.baidu.com/do/add?it=%E5%8A%A0%E6%B7%B1%E4%BA%86%E8%A7%A3%20WordPress%20%E7%9A%84%E4%B8%BB%E9%A2%98%E5%8A%9F%E8%83%BD%E6%96%87%E4%BB%B6%20functions.php&amp;amp;iu=http://www.jeff-chen.com/wordpress-theme-features-a-better-understanding-of-file-functions-php/&amp;amp;dc=&amp;amp;fr=ien#nw=1&quot; rel=&quot;nofollow&quot;&gt;百度搜藏&lt;/a&gt; | 分享: &lt;a href=&quot;http://www.xianguo.com/service/submitdigg/?link=http://www.jeff-chen.com/wordpress-theme-features-a-better-understanding-of-file-functions-php/&amp;amp;title=%E5%8A%A0%E6%B7%B1%E4%BA%86%E8%A7%A3%20WordPress%20%E7%9A%84%E4%B8%BB%E9%A2%98%E5%8A%9F%E8%83%BD%E6%96%87%E4%BB%B6%20functions.php&quot; rel=&quot;nofollow&quot;&gt;鲜果推荐&lt;/a&gt;, &lt;a href=&quot;http://v.t.sina.com.cn/share/share.php?title=%E5%8A%A0%E6%B7%B1%E4%BA%86%E8%A7%A3%20WordPress%20%E7%9A%84%E4%B8%BB%E9%A2%98%E5%8A%9F%E8%83%BD%E6%96%87%E4%BB%B6%20functions.php%20-%20http://www.jeff-chen.com/wordpress-theme-features-a-better-understanding-of-file-functions-php/&quot; rel=&quot;nofollow&quot;&gt;新浪微博&lt;/a&gt;, &lt;a href=&quot;http://v.t.qq.com/share/share.php?title=%E5%8A%A0%E6%B7%B1%E4%BA%86%E8%A7%A3%20WordPress%20%E7%9A%84%E4%B8%BB%E9%A2%98%E5%8A%9F%E8%83%BD%E6%96%87%E4%BB%B6%20functions.php&amp;amp;url=http://www.jeff-chen.com/wordpress-theme-features-a-better-understanding-of-file-functions-php/&quot; title=&quot;分享到腾讯微博&quot; rel=&quot;nofollow&quot;&gt;腾讯微博&lt;/a&gt;, &lt;a href=&quot;http://share.xiaonei.com/share/buttonshare.do?link=http://www.jeff-chen.com/wordpress-theme-features-a-better-understanding-of-file-functions-php/&amp;amp;title=%E5%8A%A0%E6%B7%B1%E4%BA%86%E8%A7%A3%20WordPress%20%E7%9A%84%E4%B8%BB%E9%A2%98%E5%8A%9F%E8%83%BD%E6%96%87%E4%BB%B6%20functions.php&quot; title=&quot;分享到人人网&quot; rel=&quot;nofollow&quot;&gt;人人网&lt;/a&gt;, &lt;a href=&quot;http://www.kaixin001.com/repaste/share.php?url=http://www.jeff-chen.com/wordpress-theme-features-a-better-understanding-of-file-functions-php/&amp;amp;title=%E5%8A%A0%E6%B7%B1%E4%BA%86%E8%A7%A3%20WordPress%20%E7%9A%84%E4%B8%BB%E9%A2%98%E5%8A%9F%E8%83%BD%E6%96%87%E4%BB%B6%20functions.php&quot; title=&quot;分享到开心网&quot; rel=&quot;nofollow&quot;&gt;开心网&lt;/a&gt;, &lt;a href=&quot;http://www.douban.com/recommend/?url=http://www.jeff-chen.com/wordpress-theme-features-a-better-understanding-of-file-functions-php/&amp;amp;title=%E5%8A%A0%E6%B7%B1%E4%BA%86%E8%A7%A3%20WordPress%20%E7%9A%84%E4%B8%BB%E9%A2%98%E5%8A%9F%E8%83%BD%E6%96%87%E4%BB%B6%20functions.php&amp;amp;sel=&amp;amp;v=1&quot; title=&quot;分享到豆瓣推荐&quot; rel=&quot;nofollow&quot;&gt;豆瓣推荐&lt;/a&gt;, &lt;a href=&quot;http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=http://www.jeff-chen.com/wordpress-theme-features-a-better-understanding-of-file-functions-php/&quot; title=&quot;分享到QQ空间&quot; rel=&quot;nofollow&quot;&gt;QQ空间&lt;/a&gt;</content><author xmlns="http://www.w3.org/2005/Atom"><name>Jeff</name></author><source xmlns="http://www.w3.org/2005/Atom" gr:stream-id="feed/http://www.jeff-chen.com/feed/"><id>tag:google.com,2005:reader/feed/http://www.jeff-chen.com/feed/</id><title type="html">Jeff-Chen.Com</title><link rel="alternate" href="http://www.jeff-chen.com" type="text/html"></link></source><content:encoded>&lt;p&gt;functions.php文件是一个所有主题都需要配备的文件，很多时候我们可以在里面添加各种函数以实现我们对WordPress的不同需求。下面是一些比较实用的函数，按需添加。&lt;br&gt;
[ccIlW_php highlight=&quot;&quot;]&lt;br&gt;
//禁用l10n.js&lt;br&gt;
wp_deregister_script('l10n');&lt;br&gt;
//移除管理员工具条(或:后台也有设置项)&lt;br&gt;
remove_action('init','wp_admin_bar_init');&lt;br&gt;
//禁用自动保存草稿&lt;br&gt;
wp_deregister_script('autosave');&lt;br&gt;
//禁用修改历史记录&lt;br&gt;
remove_action('pre_post_update','wp_save_post_revision');&lt;br&gt;
//禁止在head泄露wordpress版本号&lt;br&gt;
remove_action('wp_head','wp_generator');&lt;br&gt;
//移除head中的rel=&quot;EditURI&quot;&lt;br&gt;
remove_action('wp_head','rsd_link');&lt;br&gt;
//移除head中的rel=&quot;wlwmanifest&quot;&lt;br&gt;
remove_action('wp_head','wlwmanifest_link');&lt;br&gt;
//禁止半角符号自动变全角&lt;br&gt;
foreach(array('comment_text','the_content','the_excerpt','the_title') as $xx)&lt;br&gt;
remove_filter($xx,'wptexturize');&lt;br&gt;
//禁止自动给文章段落添加&amp;amp;amp;lt;p&amp;amp;amp;gt;标签&lt;br&gt;
remove_filter('the_content','wpautop');&lt;br&gt;
remove_filter('the_excerpt','wpautop');&lt;br&gt;
//禁止自动把'Wordpress'之类的变成'WordPress'&lt;br&gt;
remove_filter('comment_text','capital_P_dangit',31);&lt;br&gt;
remove_filter('the_content','capital_P_dangit',11);&lt;br&gt;
remove_filter('the_title','capital_P_dangit',11);&lt;br&gt;
//评论跳转链接添加nofollow&lt;br&gt;
function nofollow_compopup_link(){&lt;br&gt;
  return' rel=&quot;nofollow&quot;';&lt;br&gt;
}&lt;br&gt;
add_filter('comments_popup_link_attributes','nofollow_compopup_link');&lt;br&gt;
/*回复某人链接添加nofollow&lt;br&gt;
这个理应是原生的, 可是在wp某次改版后被改动了,&lt;br&gt;
现在是仅当开启注册回复时才有nofollow,否则需要自己手动了*/&lt;br&gt;
function nofollow_comreply_link($link){&lt;br&gt;
  return str_replace(&amp;#39;&amp;amp;amp;lt;a&amp;#39;,&amp;#39;&amp;amp;amp;lt;a rel=&amp;quot;nofollow&amp;quot;&amp;#39;,$link);&lt;br&gt;
}&lt;br&gt;
get_option('comment_registration')||&lt;br&gt;
add_filter('comment_reply_link','nofollow_comreply_link');&lt;br&gt;
[/ccIlW_php]&lt;/p&gt;
© 2004-2011 &lt;a href=&quot;http://www.jeff-chen.com&quot;&gt;Jeff-Chen.Com&lt;/a&gt; 版权所有 |
&lt;a href=&quot;http://www.jeff-chen.com/wordpress-theme-features-a-better-understanding-of-file-functions-php/&quot;&gt;文章链接&lt;/a&gt; |
&lt;strong&gt;&lt;a href=&quot;http://www.jeff-chen.com/wordpress-theme-features-a-better-understanding-of-file-functions-php/#respond&quot;&gt;1 条评论&lt;/a&gt;&lt;/strong&gt;
&lt;br&gt;
关键词: &lt;a href=&quot;http://www.jeff-chen.com/tag/wordpress/&quot; rel=&quot;tag&quot;&gt;WordPress&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/code/&quot; rel=&quot;tag&quot;&gt;代码&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/technology/&quot; rel=&quot;tag&quot;&gt;技术&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/tutorials/&quot; rel=&quot;tag&quot;&gt;教程&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/template/&quot; rel=&quot;tag&quot;&gt;模板&lt;/a&gt;
&lt;hr&gt;
收藏: &lt;a href=&quot;http://shuqian.qq.com/post?title=%E5%8A%A0%E6%B7%B1%E4%BA%86%E8%A7%A3%20WordPress%20%E7%9A%84%E4%B8%BB%E9%A2%98%E5%8A%9F%E8%83%BD%E6%96%87%E4%BB%B6%20functions.php&amp;amp;uri=http://www.jeff-chen.com/wordpress-theme-features-a-better-understanding-of-file-functions-php/&quot; rel=&quot;nofollow&quot;&gt;QQ书签&lt;/a&gt;, &lt;a href=&quot;http://www.google.com/bookmarks/mark?op=edit&amp;amp;bkmk=http://www.jeff-chen.com/wordpress-theme-features-a-better-understanding-of-file-functions-php/&amp;amp;title=%E5%8A%A0%E6%B7%B1%E4%BA%86%E8%A7%A3%20WordPress%20%E7%9A%84%E4%B8%BB%E9%A2%98%E5%8A%9F%E8%83%BD%E6%96%87%E4%BB%B6%20functions.php&quot; rel=&quot;nofollow&quot;&gt;Google书签&lt;/a&gt;, &lt;a href=&quot;http://cang.baidu.com/do/add?it=%E5%8A%A0%E6%B7%B1%E4%BA%86%E8%A7%A3%20WordPress%20%E7%9A%84%E4%B8%BB%E9%A2%98%E5%8A%9F%E8%83%BD%E6%96%87%E4%BB%B6%20functions.php&amp;amp;iu=http://www.jeff-chen.com/wordpress-theme-features-a-better-understanding-of-file-functions-php/&amp;amp;dc=&amp;amp;fr=ien#nw=1&quot; rel=&quot;nofollow&quot;&gt;百度搜藏&lt;/a&gt; | 分享: &lt;a href=&quot;http://www.xianguo.com/service/submitdigg/?link=http://www.jeff-chen.com/wordpress-theme-features-a-better-understanding-of-file-functions-php/&amp;amp;title=%E5%8A%A0%E6%B7%B1%E4%BA%86%E8%A7%A3%20WordPress%20%E7%9A%84%E4%B8%BB%E9%A2%98%E5%8A%9F%E8%83%BD%E6%96%87%E4%BB%B6%20functions.php&quot; rel=&quot;nofollow&quot;&gt;鲜果推荐&lt;/a&gt;, &lt;a href=&quot;http://v.t.sina.com.cn/share/share.php?title=%E5%8A%A0%E6%B7%B1%E4%BA%86%E8%A7%A3%20WordPress%20%E7%9A%84%E4%B8%BB%E9%A2%98%E5%8A%9F%E8%83%BD%E6%96%87%E4%BB%B6%20functions.php%20-%20http://www.jeff-chen.com/wordpress-theme-features-a-better-understanding-of-file-functions-php/&quot; rel=&quot;nofollow&quot;&gt;新浪微博&lt;/a&gt;, &lt;a href=&quot;http://v.t.qq.com/share/share.php?title=%E5%8A%A0%E6%B7%B1%E4%BA%86%E8%A7%A3%20WordPress%20%E7%9A%84%E4%B8%BB%E9%A2%98%E5%8A%9F%E8%83%BD%E6%96%87%E4%BB%B6%20functions.php&amp;amp;url=http://www.jeff-chen.com/wordpress-theme-features-a-better-understanding-of-file-functions-php/&quot; title=&quot;分享到腾讯微博&quot; rel=&quot;nofollow&quot;&gt;腾讯微博&lt;/a&gt;, &lt;a href=&quot;http://share.xiaonei.com/share/buttonshare.do?link=http://www.jeff-chen.com/wordpress-theme-features-a-better-understanding-of-file-functions-php/&amp;amp;title=%E5%8A%A0%E6%B7%B1%E4%BA%86%E8%A7%A3%20WordPress%20%E7%9A%84%E4%B8%BB%E9%A2%98%E5%8A%9F%E8%83%BD%E6%96%87%E4%BB%B6%20functions.php&quot; title=&quot;分享到人人网&quot; rel=&quot;nofollow&quot;&gt;人人网&lt;/a&gt;, &lt;a href=&quot;http://www.kaixin001.com/repaste/share.php?url=http://www.jeff-chen.com/wordpress-theme-features-a-better-understanding-of-file-functions-php/&amp;amp;title=%E5%8A%A0%E6%B7%B1%E4%BA%86%E8%A7%A3%20WordPress%20%E7%9A%84%E4%B8%BB%E9%A2%98%E5%8A%9F%E8%83%BD%E6%96%87%E4%BB%B6%20functions.php&quot; title=&quot;分享到开心网&quot; rel=&quot;nofollow&quot;&gt;开心网&lt;/a&gt;, &lt;a href=&quot;http://www.douban.com/recommend/?url=http://www.jeff-chen.com/wordpress-theme-features-a-better-understanding-of-file-functions-php/&amp;amp;title=%E5%8A%A0%E6%B7%B1%E4%BA%86%E8%A7%A3%20WordPress%20%E7%9A%84%E4%B8%BB%E9%A2%98%E5%8A%9F%E8%83%BD%E6%96%87%E4%BB%B6%20functions.php&amp;amp;sel=&amp;amp;v=1&quot; title=&quot;分享到豆瓣推荐&quot; rel=&quot;nofollow&quot;&gt;豆瓣推荐&lt;/a&gt;, &lt;a href=&quot;http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=http://www.jeff-chen.com/wordpress-theme-features-a-better-understanding-of-file-functions-php/&quot; title=&quot;分享到QQ空间&quot; rel=&quot;nofollow&quot;&gt;QQ空间&lt;/a&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/567971060/sharer/feedsky/s.gif?r=http://www.jeff-chen.com/wordpress-theme-features-a-better-understanding-of-file-functions-php/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;</content:encoded><category>文库</category><category>WordPress</category><category>代码</category><category>技术</category><category>教程</category><category>模板</category><pubDate>Thu, 20 Oct 2011 14:16:26 +0800</pubDate><guid isPermaLink="false">tag:google.com,2005:reader/item/60ea5e34c64ca9aa</guid><dc:creator>Jeff</dc:creator><fs:srclink>http://www.jeff-chen.com/wordpress-theme-features-a-better-understanding-of-file-functions-php/</fs:srclink><fs:srcfeed>http://www.google.com/reader/public/atom/user%2F04568479978967443037%2Flabel%2FSharer</fs:srcfeed><fs:itemid>feedsky/sharer/~8223687/567971060/6299489</fs:itemid></item><item><title>PHP集成运行环境大全</title><link atom:type="text/html">http://www.jeff-chen.com/the-integration-of-php-runtime-environment-daquan/</link><id xmlns="http://www.w3.org/2005/Atom" gr:original-id="http://www.jeff-chen.com/?p=1770">tag:google.com,2005:reader/item/48085aea11c19861</id><content xmlns="http://www.w3.org/2005/Atom" xml:base="http://www.jeff-chen.com/" type="html">&lt;p&gt;介绍一些PHP运行环境，您可以根据自己的需求选择最合适的PHP集成环境。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;XAMPP&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;XAMPP 是一个易于安装且包含 MySQL、PHP 和 Perl 的 Apache 发行版。XAMPP 的确非常容易安装和使用：只需下载，解压缩，启动即可。&lt;/p&gt;
&lt;p&gt;到目前为止，XAMPP 共有以下四种版本：&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;适用于 Linux 系统的发行版（已在 Ubuntu、SuSE, RedHat, Mandrake 和 Debian 下通过测试）。 其中包含：Apache, MySQL, PHP &amp;amp; PEAR, Perl, ProFTPD, phpMyAdmin, OpenSSL ,GD, Freetype2, libjpeg, libpng, gdbm, zlib, expat, Sablotron, libxml, Ming, Webalizer, pdf class, ncurses, mod_perl, FreeTDS, gettext, mcrypt, mhash, eAccelerator, SQLite 和 IMAP C-Client。&lt;/li&gt;
&lt;li&gt;适用于 Windows 2000、XP、Vista 和 7 的发行版。该版本包括：Apache、MySQL、PHP + PEAR, Perl, mod_php, mod_perl, mod_ssl, OpenSSL, phpMyAdmin, Webalizer, Mercury Mail Transport System, Ming, JpGraph, FileZilla FTP Server, mcrypt, eAccelerator, SQLite 和 WEB-DAV + mod_auth_mysql.&lt;/li&gt;
&lt;li&gt;适用于 Mac OS X 的发行版包括：Apache、MySQL、PHP &amp;amp; PEAR、SQLite、Perl, ProFTPD, phpMyAdmin, OpenSSL, GD, Freetype2, libjpeg, libpng, zlib, Ming, Webalizer、mod_perl。&lt;/li&gt;
&lt;li&gt;适用于 Solaris 的发行版（在 Solaris 8 环境下开发并测试，在 Solaris 9 下通过测试）包括：Apache、MySQL、PHP &amp;amp; PEAR, Perl, ProFTPD, phpMyAdmin, OpenSSL, Freetype2, libjpeg, libpng, zlib, expat, Ming, Webalizer, pdf class。&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;目前我正在使用的是Windows下的XAMPP 1.7.7，其中XAMPP 1.7.7包含以下内容：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Apache 2.2.21&lt;/li&gt;
&lt;li&gt;MySQL 5.5.16&lt;/li&gt;
&lt;li&gt;PHP 5.3.8&lt;/li&gt;
&lt;li&gt;phpMyAdmin 3.4.5&lt;/li&gt;
&lt;li&gt;FileZilla FTP Server 0.9.39&lt;/li&gt;
&lt;li&gt;Tomcat 7.0.21 (with mod_proxy_ajp as connector)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;总体来说，XAMPP安装及其简单，如果用于测试也无需任何测试，是用来搭建本地PHP环境用以测试PHP代码的绝好程序。&lt;/p&gt;
&lt;p&gt;XAMPP官方网址：&lt;a href=&quot;http://www.apachefriends.org/zh_cn/xampp.html&quot;&gt;http://www.apachefriends.org/zh_cn/xampp.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;PHPnow&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;PHPnow 是Win32 下绿色免费的 Apache + PHP + MySQL 环境套件包。是一个简易安装、快速搭建支持虚拟主机的 PHP 环境。附带 PnCp.cmd 控制面板，帮助你快速配置你的套件，使用非常方便。&lt;/p&gt;
&lt;p&gt;PHPnow和前面推荐的XAMPP比较类似，目前主要针对Windows平台，PHPnow的主要特点：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;支持虚拟主机:便捷的虚拟主机管理&lt;/li&gt;
&lt;li&gt;配置文件备份:放心地去尝试修改配置文件，乱了就还原配置&lt;/li&gt;
&lt;li&gt;虚拟主机代理：可与 IIS 共存 (不同端口，泛解析代理)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;当前PHPnow的版本为PHPnow 1.5.6，包含以下组件：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Apache-2.0.63 / 2.2.16&lt;/li&gt;
&lt;li&gt;PHP-5.2.14&lt;/li&gt;
&lt;li&gt;MySQL-5.0.90 / 5.1.50&lt;/li&gt;
&lt;li&gt;Zend Optimizer-3.3.3&lt;/li&gt;
&lt;li&gt;phpMyAdmin-3.3.7&lt;/li&gt;
&lt;li&gt;* eAccelerator 0.9.6-1（默认没有启用。执行 PnCp.cmd 选 3 启用。）&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;PHPnow的官方网站为：&lt;a href=&quot;http://phpnow.org/&quot;&gt;http://phpnow.org/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;WampServer&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;WampServer是Apache Web服务器、PHP解释器以及MySQL数据库的整合软件包。即在window下的apache、php和mysql的服务器软件。&lt;/p&gt;
&lt;p&gt;WampServer 2 的前身是WAMP5。以下为WampServer 2.2a版包含的内容：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Apache 2.2.21&lt;/li&gt;
&lt;li&gt;Php 5.3.8&lt;/li&gt;
&lt;li&gt;Mysql 5.5.16&lt;/li&gt;
&lt;li&gt;XDebug 2.1.2&lt;/li&gt;
&lt;li&gt;XDC 1.5&lt;/li&gt;
&lt;li&gt;PhpMyadmin 3.4.5&lt;/li&gt;
&lt;li&gt;SQLBuddy 1.3.3&lt;/li&gt;
&lt;li&gt;webGrind 1.0&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;可以看出WampServer中集成了很多内容，包括了用于调试的XDebug和webGrind，且有结合Ajax技术开发的MySQL数据库管理工具SQLBuddy。&lt;/p&gt;
&lt;p&gt;WampServer官方网站：&lt;a href=&quot;http://www.wampserver.com/en/&quot;&gt;http://www.wampserver.com/en/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;EasyPHP&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;EasyPHP是一个Windows下的Apache+Mysql+Perl/PHP/Python开发包，包中集成了PHP、Apache、MySQL，同时也集成了一些辅助的开发工具，如数据库管理工具，PhpMyAdmin和php调试工具Xdebug，无需配置，就可运行。EasyPHP是由法国人开发，经过EasyPHP整合后的Apache、MySQL及PHP精简很多，运行速度比独立安装的Apache、MySQL及PHP相对较快且比较稳定。&lt;/p&gt;
&lt;p&gt;EasyPHP安装后默认为英文界面，用户可以更改成简体中文或其它语言，(在系统托盘上右击EasyPHP图标-configuration-EasyPHP-language处更改)，实际上EasyPHP主要是一个本地性质的开发测试环境，EasyPHP并没有集成zend optimizer之类的性能优化工具，而且默认不开放非本地访问，默认的端口为8887，这样设置可以最大限度在本地上运行，而不用考虑80端口被占用的情况。&lt;/p&gt;
&lt;p&gt;EasyPHP可以和NetBeans一起使用，无需安装任何其它工具或插件，只需点点NetBeans工具栏上的按钮即可对PHP程序进行调试，EasyPHP集成Xdebug可谓非常的人性化。&lt;/p&gt;
&lt;p&gt;EasyPHP目前最新的发布版本为：EasyPHP 5.3.8.1，其包含了如下组件：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;PHP 5.3.8 VC9&lt;/li&gt;
&lt;li&gt;Apache 2.2.21 VC9&lt;/li&gt;
&lt;li&gt;MySQL 5.5.16&lt;/li&gt;
&lt;li&gt;PhpMyAdmin 3.4.5&lt;/li&gt;
&lt;li&gt;Xdebug 2.1.2&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;除此之外，EasyPHP还提供了开发者工具，提供的开发者工具有：&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Virtual Hosts Manager&lt;/li&gt;
&lt;li&gt;WebGrind&lt;/li&gt;
&lt;li&gt;Xdebug Manager for EasyPHP&lt;/li&gt;
&lt;li&gt;Function Reference for EasyPHP&lt;/li&gt;
&lt;li&gt;Coding Standards for EasyPHP&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;EasyPHP官方网站：&lt;a href=&quot;http://www.easyphp.org/&quot;&gt;http://www.easyphp.org/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;AppServ&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;AppServ 是 PHP 网页架站工具组合包，作者将一些网络上免费的架站资源重新包装成单一的安装程序，以方便初学者快速完成架站，AppServ 所包含的软件有：Apache、Apache Monitor、PHP、MySQL、phpMyAdmin等。&lt;/p&gt;
&lt;p&gt;目前AppServ主要有两个版本，一个是针对PHP5+MySQL5的，而另外一个是针对PHP6+MySQL6的。具体的参数如下：&lt;/p&gt;
&lt;p&gt;AppServ 2.6.0&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Apache 2.2.8&lt;/li&gt;
&lt;li&gt;PHP 6.0.0-dev&lt;/li&gt;
&lt;li&gt;MySQL 6.0.4-alpha&lt;/li&gt;
&lt;li&gt;phpMyAdmin-2.10.3&lt;strong&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;如果你想尝新下PHP6+MySQL6，AppServ就是一个不错的选择。&lt;/p&gt;
&lt;p&gt;除此之外，AppServ还提供Zend Optimizer插件。&lt;/p&gt;
&lt;p&gt;AppServ官方网站：&lt;a href=&quot;http://www.appservnetwork.com/&quot;&gt;http://www.appservnetwork.com/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;CoreAMP&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;CoreAMP是一款适用于windows下开发PHP站点的完全绿色服务器端集成环境。解压到任意非中文目录即可使用，简单拷贝即可部署多个项目环境，控制台方式和服务方式随意组合，查看访问日志和SQL日志简单方便，附有详细的教程可自己动手制作。&lt;/p&gt;
&lt;p&gt;CoreAMP的功能介绍&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;CoreAMP支持XP/2003/Vista/Win7/2008等多种Windows平台。&lt;/li&gt;
&lt;li&gt;CoreAMP安装简单，直接下载后解压缩打开控制中心选择安装服务即可。&lt;/li&gt;
&lt;li&gt;Web服务器既可以选择Apache也可以选择Nginx，方便开发者编写Nginx下的Rewrite。&lt;/li&gt;
&lt;li&gt;CoreAMP包含了5.2和5.3两个版本的PHP，可以根据兼容性等需求自由选择。&lt;/li&gt;
&lt;li&gt;集成ZendDebug、ZendOptimizer、XDebug、XCache、memcached、svnserver、PHPUnit、phpDocumentor、phpMyAdmin，让开发者更惬意。&lt;/li&gt;
&lt;li&gt;CoreAMP既适用于开发环境也适用于运营环境，有两套PHP和Mysql配置可以来回切换。&lt;/li&gt;
&lt;li&gt;CoreAMP是绿色软件，除安装服务外不会写注册表或写文件，甚至可以使用启动控制台这种纯绿色的方式。&lt;/li&gt;
&lt;li&gt;CoreAMP中的配置全部使用相对路径，可以实现自由移动和多处部署，完全可以放到U盘上去随时用随时启。&lt;/li&gt;
&lt;li&gt;在控制集成包不超大的情况下，尽可能保留所有的PHP扩展组件，保证各软件的完整性和使用最新稳定版本。&lt;/li&gt;
&lt;li&gt;使用批处理编写的强大的控制中心，可以检查和自由修改，同时readme.txt有完整详细的集成包制作过程。&lt;/li&gt;
&lt;li&gt;支持各种版本IIS用FastCGI方式启动PHP，并可以单独启动Mysql服务，实现IIS+PHP+Mysql的梦幻组合。&lt;/li&gt;
&lt;li&gt;支持配置多个虚机，若目录名和域名相同的话可以实现拖动Web目录下的文件到控制中心按回车可直接访问。&lt;/li&gt;
&lt;li&gt;CoreAMP可与其他安装的PHP集成环境共存，如果web目录是htdocs直接解压到同级目录启动服务即可访问。&lt;/li&gt;
&lt;li&gt;这么强大功能的CoreAMP经7z压缩后仅 26M 。&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;CoreAMP包含的软件&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Apache 2.2.17&lt;/li&gt;
&lt;li&gt;Mysql 5.1.56&lt;/li&gt;
&lt;li&gt;PHP 5.2.17（内含ZendDebugger、ZendOptimizer）&lt;/li&gt;
&lt;li&gt;PHP 5.3.5（内含XDebug、XCache）&lt;/li&gt;
&lt;li&gt;Nginx 0.8.54&lt;/li&gt;
&lt;li&gt;memcached 1.4.5&lt;/li&gt;
&lt;li&gt;Subversion Server 1.6.12&lt;/li&gt;
&lt;li&gt;PHPUnit 3.5.13&lt;/li&gt;
&lt;li&gt;phpDocumentor 1.4.3&lt;/li&gt;
&lt;li&gt;phpMyAdmin 3.3.10&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;CoreAMP的目录结构&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;htdocs/ &lt;em&gt;&amp;lt;–这是默认的web目录&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;server/&lt;/li&gt;
&lt;li&gt;server/mysql-5.1.56/data/ &lt;em&gt;&amp;lt;–这是存放数据库文件的目录&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;server/subversion-1.6.12/conf/&lt;br&gt;
&lt;em&gt;&amp;lt;–这是存放SVN版本控制配置文件的目录&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;server/subversion-1.6.12/svn_repository/&lt;br&gt;
&lt;em&gt;&amp;lt;–这是存放SVN版本控制的数据仓库目录&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;readme.txt&lt;/li&gt;
&lt;li&gt;start.bat &lt;em&gt;&amp;lt;–这是控制中心&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;CoreAMP官方网址：&lt;a href=&quot;http://code.google.com/p/coreamp/&quot;&gt;http://code.google.com/p/coreamp/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;VertrigoServ&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;VertrigoServ 是一个Windows平台下的非常专业的、易于安装的免费网络开发环境，它集成了Apache, PHP, MySQL, SQLite, SQLiteManager, PhpMyAdmin, Zend Optimizer。采用方便的集成安装包，所有组件 安装于统一目录下，安装完成后，无须配置即可使用。具有卸载程序。VertrigoServ无论对于初学者还是高级用户都非常合适。&lt;/p&gt;
&lt;p&gt;VertrigoServ的主要特点：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;体积小(LZMA压缩)&lt;/li&gt;
&lt;li&gt;所含软件包为最新版本，安全性高&lt;/li&gt;
&lt;li&gt;安装简单，使用方便&lt;/li&gt;
&lt;li&gt;自动安装，无须配置&lt;/li&gt;
&lt;li&gt;与各Windows版本兼容&lt;/li&gt;
&lt;li&gt;完全免费&lt;/li&gt;
&lt;li&gt;波兰语和英语&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;VertrigoServ最新稳定版为 2.24，主要包含以下组件：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Apache 2.2.17&lt;/li&gt;
&lt;li&gt;PHP 5.3.6&lt;/li&gt;
&lt;li&gt;MySQL 5.5.10&lt;/li&gt;
&lt;li&gt;SQLite 3.7.5&lt;/li&gt;
&lt;li&gt;Smarty 3.0.7&lt;/li&gt;
&lt;li&gt;PhpMyAdmin 3.3.9.2&lt;/li&gt;
&lt;li&gt;Xdebug 2.1.0&lt;/li&gt;
&lt;li&gt;SQLiteManager 1.2.4&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;其中比较有特色的是包含了SQLite，对于SQLite有爱的童鞋可以尝试使用下。&lt;/p&gt;
&lt;p&gt;VertrigoServ官方网址：&lt;a href=&quot;http://vertrigo.sourceforge.net/?lang=cn&quot;&gt;http://vertrigo.sourceforge.net/?lang=cn&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;APM Express 集成运行环境（QeePHP定制）&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;APM Express 是一个集成了 Apache 2.2、PHP5、MySQL 5，以及 phpMyAdmin、QeePHP 框架（含示例）的绿色集成运行环境，简称为“APMXE”。解压缩即可使用，不写入任何系统文件，100% 绿色。主要包含组件有：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Apache 2.2（完整）&lt;/li&gt;
&lt;li&gt; PHP 5.2.9–2（完整）&lt;/li&gt;
&lt;li&gt; XCache 2.0.4&lt;/li&gt;
&lt;li&gt; MySQL 5.0（服务端和命令行工具）&lt;/li&gt;
&lt;li&gt; phpMyAdmin 3.2&lt;/li&gt;
&lt;li&gt; QeePHP 2.1（含示例）&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;官方网址为：&lt;a href=&quot;http://qeephp.com/projects/apmxe&quot;&gt;http://qeephp.com/projects/apmxe&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;DedeAMPZ-PHP环境整合套件（DeDeCMS定制）&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;DedeAMPZ 是直接整合PHP + Apache + MySql 的服务器环境管理软件，操作十分傻瓜化，适合初中级水平的站长使用。&lt;br&gt;
主要具有如下特点：&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;支持php4、php5、MySql4、MySql5、Apache2.2、Zend Optimizer-3.3.0；(完整版)&lt;/li&gt;
&lt;li&gt; 安装使用十分简单，并支持在php4与php5中切换；&lt;/li&gt;
&lt;li&gt; 经过专业的处理后，使你配置apache+php的站点更简单；&lt;/li&gt;
&lt;li&gt; 本软件内置DedeCms在线安装程序，让你安装调试DedeCms更加简单；&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;官方网址为：&lt;a href=&quot;http://www.dedecms.com/products/dedecms/downloads/&quot;&gt;http://www.dedecms.com/products/dedecms/downloads/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;ComsenzEXP（Discux 定制）&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;ComsenzEXP 是康盛全新开发制作的一套社区产品体验安装包。ComsenzEXP 可以自动安装 PHP + MySQL 运行环境，并且自动安装好 Discuz! X2 正式版 ，使用户能够完方便整的体验 Comsenz 社区产品所带来的魅力。目前集成的软件为：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;DiscuzX2 GBK&lt;/li&gt;
&lt;li&gt; Apache 2.2.19&lt;/li&gt;
&lt;li&gt; MySQL 5.0.90&lt;/li&gt;
&lt;li&gt; PHP 5.2.17&lt;/li&gt;
&lt;li&gt; Zend Optimizer 3.3.3&lt;/li&gt;
&lt;li&gt; phpMyAdmin 3.1.0&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;官方网站为：&lt;a href=&quot;http://www.discuz.net/thread-2242502-1-1.html&quot;&gt;http://www.discuz.net/thread-2242502-1-1.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;CYDPHP&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;CYDPHP 绿色 免安装 针对Windows下快速开发PHP及B/S开发 模式下日常必备功能的一键整合开发环境。CYDPHP 功能组件：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;PHP 5.3.3&lt;/li&gt;
&lt;li&gt; Nginx 0.8.39&lt;/li&gt;
&lt;li&gt; MySQL 5.1.48&lt;/li&gt;
&lt;li&gt; memcache 2.2.5&lt;/li&gt;
&lt;li&gt; eAccelerator 0.9.6&lt;/li&gt;
&lt;li&gt; Xdebug 2.1.0&lt;/li&gt;
&lt;li&gt; phpMyAdmin mysql管理&lt;/li&gt;
&lt;li&gt; AB 压力测试&lt;/li&gt;
&lt;li&gt; javaScript 压缩工具&lt;/li&gt;
&lt;li&gt; CSS 压缩工具&lt;/li&gt;
&lt;li&gt; PHP 代码格式美化&lt;/li&gt;
&lt;li&gt; MySQL 数据批量生成工具&lt;/li&gt;
&lt;li&gt; xdebug分析工具&lt;/li&gt;
&lt;li&gt; SFTP/FTP&lt;/li&gt;
&lt;li&gt; Windows 常用命令&lt;/li&gt;
&lt;li&gt; DOS Linux shell  模拟工具&lt;/li&gt;
&lt;li&gt; 端口进程分析工具&lt;/li&gt;
&lt;li&gt; 翻译工具&lt;/li&gt;
&lt;li&gt; 取色工具&lt;/li&gt;
&lt;li&gt; 快捷文档软件管理工具&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;官方网站：&lt;a href=&quot;http://www.cydphp.cn/&quot;&gt;http://www.cydphp.cn/&lt;/a&gt;&lt;/p&gt;
© 2004-2011 &lt;a href=&quot;http://www.jeff-chen.com&quot;&gt;Jeff-Chen.Com&lt;/a&gt; 版权所有 |
&lt;a href=&quot;http://www.jeff-chen.com/the-integration-of-php-runtime-environment-daquan/&quot;&gt;文章链接&lt;/a&gt; |
&lt;strong&gt;&lt;a href=&quot;http://www.jeff-chen.com/the-integration-of-php-runtime-environment-daquan/#respond&quot;&gt;发表评论&lt;/a&gt;&lt;/strong&gt;
&lt;br&gt;
关键词: &lt;a href=&quot;http://www.jeff-chen.com/tag/apache/&quot; rel=&quot;tag&quot;&gt;Apache&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/mysql/&quot; rel=&quot;tag&quot;&gt;MySQL&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/nginx/&quot; rel=&quot;tag&quot;&gt;Nginx&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/php/&quot; rel=&quot;tag&quot;&gt;PHP&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/xampp/&quot; rel=&quot;tag&quot;&gt;XAMPP&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/server/&quot; rel=&quot;tag&quot;&gt;服务器&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/website/&quot; rel=&quot;tag&quot;&gt;网站&lt;/a&gt;
&lt;hr&gt;
收藏: &lt;a href=&quot;http://shuqian.qq.com/post?title=PHP%E9%9B%86%E6%88%90%E8%BF%90%E8%A1%8C%E7%8E%AF%E5%A2%83%E5%A4%A7%E5%85%A8&amp;amp;uri=http://www.jeff-chen.com/the-integration-of-php-runtime-environment-daquan/&quot; rel=&quot;nofollow&quot;&gt;QQ书签&lt;/a&gt;, &lt;a href=&quot;http://www.google.com/bookmarks/mark?op=edit&amp;amp;bkmk=http://www.jeff-chen.com/the-integration-of-php-runtime-environment-daquan/&amp;amp;title=PHP%E9%9B%86%E6%88%90%E8%BF%90%E8%A1%8C%E7%8E%AF%E5%A2%83%E5%A4%A7%E5%85%A8&quot; rel=&quot;nofollow&quot;&gt;Google书签&lt;/a&gt;, &lt;a href=&quot;http://cang.baidu.com/do/add?it=PHP%E9%9B%86%E6%88%90%E8%BF%90%E8%A1%8C%E7%8E%AF%E5%A2%83%E5%A4%A7%E5%85%A8&amp;amp;iu=http://www.jeff-chen.com/the-integration-of-php-runtime-environment-daquan/&amp;amp;dc=&amp;amp;fr=ien#nw=1&quot; rel=&quot;nofollow&quot;&gt;百度搜藏&lt;/a&gt; | 分享: &lt;a href=&quot;http://www.xianguo.com/service/submitdigg/?link=http://www.jeff-chen.com/the-integration-of-php-runtime-environment-daquan/&amp;amp;title=PHP%E9%9B%86%E6%88%90%E8%BF%90%E8%A1%8C%E7%8E%AF%E5%A2%83%E5%A4%A7%E5%85%A8&quot; rel=&quot;nofollow&quot;&gt;鲜果推荐&lt;/a&gt;, &lt;a href=&quot;http://v.t.sina.com.cn/share/share.php?title=PHP%E9%9B%86%E6%88%90%E8%BF%90%E8%A1%8C%E7%8E%AF%E5%A2%83%E5%A4%A7%E5%85%A8%20-%20http://www.jeff-chen.com/the-integration-of-php-runtime-environment-daquan/&quot; rel=&quot;nofollow&quot;&gt;新浪微博&lt;/a&gt;, &lt;a href=&quot;http://v.t.qq.com/share/share.php?title=PHP%E9%9B%86%E6%88%90%E8%BF%90%E8%A1%8C%E7%8E%AF%E5%A2%83%E5%A4%A7%E5%85%A8&amp;amp;url=http://www.jeff-chen.com/the-integration-of-php-runtime-environment-daquan/&quot; title=&quot;分享到腾讯微博&quot; rel=&quot;nofollow&quot;&gt;腾讯微博&lt;/a&gt;, &lt;a href=&quot;http://share.xiaonei.com/share/buttonshare.do?link=http://www.jeff-chen.com/the-integration-of-php-runtime-environment-daquan/&amp;amp;title=PHP%E9%9B%86%E6%88%90%E8%BF%90%E8%A1%8C%E7%8E%AF%E5%A2%83%E5%A4%A7%E5%85%A8&quot; title=&quot;分享到人人网&quot; rel=&quot;nofollow&quot;&gt;人人网&lt;/a&gt;, &lt;a href=&quot;http://www.kaixin001.com/repaste/share.php?url=http://www.jeff-chen.com/the-integration-of-php-runtime-environment-daquan/&amp;amp;title=PHP%E9%9B%86%E6%88%90%E8%BF%90%E8%A1%8C%E7%8E%AF%E5%A2%83%E5%A4%A7%E5%85%A8&quot; title=&quot;分享到开心网&quot; rel=&quot;nofollow&quot;&gt;开心网&lt;/a&gt;, &lt;a href=&quot;http://www.douban.com/recommend/?url=http://www.jeff-chen.com/the-integration-of-php-runtime-environment-daquan/&amp;amp;title=PHP%E9%9B%86%E6%88%90%E8%BF%90%E8%A1%8C%E7%8E%AF%E5%A2%83%E5%A4%A7%E5%85%A8&amp;amp;sel=&amp;amp;v=1&quot; title=&quot;分享到豆瓣推荐&quot; rel=&quot;nofollow&quot;&gt;豆瓣推荐&lt;/a&gt;, &lt;a href=&quot;http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=http://www.jeff-chen.com/the-integration-of-php-runtime-environment-daquan/&quot; title=&quot;分享到QQ空间&quot; rel=&quot;nofollow&quot;&gt;QQ空间&lt;/a&gt;</content><author xmlns="http://www.w3.org/2005/Atom"><name>Jeff</name></author><source xmlns="http://www.w3.org/2005/Atom" gr:stream-id="feed/http://www.jeff-chen.com/feed/"><id>tag:google.com,2005:reader/feed/http://www.jeff-chen.com/feed/</id><title type="html">Jeff-Chen.Com</title><link rel="alternate" href="http://www.jeff-chen.com" type="text/html"></link></source><content:encoded>&lt;p&gt;介绍一些PHP运行环境，您可以根据自己的需求选择最合适的PHP集成环境。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;XAMPP&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;XAMPP 是一个易于安装且包含 MySQL、PHP 和 Perl 的 Apache 发行版。XAMPP 的确非常容易安装和使用：只需下载，解压缩，启动即可。&lt;/p&gt;
&lt;p&gt;到目前为止，XAMPP 共有以下四种版本：&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;适用于 Linux 系统的发行版（已在 Ubuntu、SuSE, RedHat, Mandrake 和 Debian 下通过测试）。 其中包含：Apache, MySQL, PHP &amp;amp; PEAR, Perl, ProFTPD, phpMyAdmin, OpenSSL ,GD, Freetype2, libjpeg, libpng, gdbm, zlib, expat, Sablotron, libxml, Ming, Webalizer, pdf class, ncurses, mod_perl, FreeTDS, gettext, mcrypt, mhash, eAccelerator, SQLite 和 IMAP C-Client。&lt;/li&gt;
&lt;li&gt;适用于 Windows 2000、XP、Vista 和 7 的发行版。该版本包括：Apache、MySQL、PHP + PEAR, Perl, mod_php, mod_perl, mod_ssl, OpenSSL, phpMyAdmin, Webalizer, Mercury Mail Transport System, Ming, JpGraph, FileZilla FTP Server, mcrypt, eAccelerator, SQLite 和 WEB-DAV + mod_auth_mysql.&lt;/li&gt;
&lt;li&gt;适用于 Mac OS X 的发行版包括：Apache、MySQL、PHP &amp;amp; PEAR、SQLite、Perl, ProFTPD, phpMyAdmin, OpenSSL, GD, Freetype2, libjpeg, libpng, zlib, Ming, Webalizer、mod_perl。&lt;/li&gt;
&lt;li&gt;适用于 Solaris 的发行版（在 Solaris 8 环境下开发并测试，在 Solaris 9 下通过测试）包括：Apache、MySQL、PHP &amp;amp; PEAR, Perl, ProFTPD, phpMyAdmin, OpenSSL, Freetype2, libjpeg, libpng, zlib, expat, Ming, Webalizer, pdf class。&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;目前我正在使用的是Windows下的XAMPP 1.7.7，其中XAMPP 1.7.7包含以下内容：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Apache 2.2.21&lt;/li&gt;
&lt;li&gt;MySQL 5.5.16&lt;/li&gt;
&lt;li&gt;PHP 5.3.8&lt;/li&gt;
&lt;li&gt;phpMyAdmin 3.4.5&lt;/li&gt;
&lt;li&gt;FileZilla FTP Server 0.9.39&lt;/li&gt;
&lt;li&gt;Tomcat 7.0.21 (with mod_proxy_ajp as connector)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;总体来说，XAMPP安装及其简单，如果用于测试也无需任何测试，是用来搭建本地PHP环境用以测试PHP代码的绝好程序。&lt;/p&gt;
&lt;p&gt;XAMPP官方网址：&lt;a href=&quot;http://www.apachefriends.org/zh_cn/xampp.html&quot;&gt;http://www.apachefriends.org/zh_cn/xampp.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;PHPnow&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;PHPnow 是Win32 下绿色免费的 Apache + PHP + MySQL 环境套件包。是一个简易安装、快速搭建支持虚拟主机的 PHP 环境。附带 PnCp.cmd 控制面板，帮助你快速配置你的套件，使用非常方便。&lt;/p&gt;
&lt;p&gt;PHPnow和前面推荐的XAMPP比较类似，目前主要针对Windows平台，PHPnow的主要特点：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;支持虚拟主机:便捷的虚拟主机管理&lt;/li&gt;
&lt;li&gt;配置文件备份:放心地去尝试修改配置文件，乱了就还原配置&lt;/li&gt;
&lt;li&gt;虚拟主机代理：可与 IIS 共存 (不同端口，泛解析代理)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;当前PHPnow的版本为PHPnow 1.5.6，包含以下组件：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Apache-2.0.63 / 2.2.16&lt;/li&gt;
&lt;li&gt;PHP-5.2.14&lt;/li&gt;
&lt;li&gt;MySQL-5.0.90 / 5.1.50&lt;/li&gt;
&lt;li&gt;Zend Optimizer-3.3.3&lt;/li&gt;
&lt;li&gt;phpMyAdmin-3.3.7&lt;/li&gt;
&lt;li&gt;* eAccelerator 0.9.6-1（默认没有启用。执行 PnCp.cmd 选 3 启用。）&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;PHPnow的官方网站为：&lt;a href=&quot;http://phpnow.org/&quot;&gt;http://phpnow.org/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;WampServer&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;WampServer是Apache Web服务器、PHP解释器以及MySQL数据库的整合软件包。即在window下的apache、php和mysql的服务器软件。&lt;/p&gt;
&lt;p&gt;WampServer 2 的前身是WAMP5。以下为WampServer 2.2a版包含的内容：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Apache 2.2.21&lt;/li&gt;
&lt;li&gt;Php 5.3.8&lt;/li&gt;
&lt;li&gt;Mysql 5.5.16&lt;/li&gt;
&lt;li&gt;XDebug 2.1.2&lt;/li&gt;
&lt;li&gt;XDC 1.5&lt;/li&gt;
&lt;li&gt;PhpMyadmin 3.4.5&lt;/li&gt;
&lt;li&gt;SQLBuddy 1.3.3&lt;/li&gt;
&lt;li&gt;webGrind 1.0&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;可以看出WampServer中集成了很多内容，包括了用于调试的XDebug和webGrind，且有结合Ajax技术开发的MySQL数据库管理工具SQLBuddy。&lt;/p&gt;
&lt;p&gt;WampServer官方网站：&lt;a href=&quot;http://www.wampserver.com/en/&quot;&gt;http://www.wampserver.com/en/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;EasyPHP&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;EasyPHP是一个Windows下的Apache+Mysql+Perl/PHP/Python开发包，包中集成了PHP、Apache、MySQL，同时也集成了一些辅助的开发工具，如数据库管理工具，PhpMyAdmin和php调试工具Xdebug，无需配置，就可运行。EasyPHP是由法国人开发，经过EasyPHP整合后的Apache、MySQL及PHP精简很多，运行速度比独立安装的Apache、MySQL及PHP相对较快且比较稳定。&lt;/p&gt;
&lt;p&gt;EasyPHP安装后默认为英文界面，用户可以更改成简体中文或其它语言，(在系统托盘上右击EasyPHP图标-configuration-EasyPHP-language处更改)，实际上EasyPHP主要是一个本地性质的开发测试环境，EasyPHP并没有集成zend optimizer之类的性能优化工具，而且默认不开放非本地访问，默认的端口为8887，这样设置可以最大限度在本地上运行，而不用考虑80端口被占用的情况。&lt;/p&gt;
&lt;p&gt;EasyPHP可以和NetBeans一起使用，无需安装任何其它工具或插件，只需点点NetBeans工具栏上的按钮即可对PHP程序进行调试，EasyPHP集成Xdebug可谓非常的人性化。&lt;/p&gt;
&lt;p&gt;EasyPHP目前最新的发布版本为：EasyPHP 5.3.8.1，其包含了如下组件：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;PHP 5.3.8 VC9&lt;/li&gt;
&lt;li&gt;Apache 2.2.21 VC9&lt;/li&gt;
&lt;li&gt;MySQL 5.5.16&lt;/li&gt;
&lt;li&gt;PhpMyAdmin 3.4.5&lt;/li&gt;
&lt;li&gt;Xdebug 2.1.2&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;除此之外，EasyPHP还提供了开发者工具，提供的开发者工具有：&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Virtual Hosts Manager&lt;/li&gt;
&lt;li&gt;WebGrind&lt;/li&gt;
&lt;li&gt;Xdebug Manager for EasyPHP&lt;/li&gt;
&lt;li&gt;Function Reference for EasyPHP&lt;/li&gt;
&lt;li&gt;Coding Standards for EasyPHP&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;EasyPHP官方网站：&lt;a href=&quot;http://www.easyphp.org/&quot;&gt;http://www.easyphp.org/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;AppServ&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;AppServ 是 PHP 网页架站工具组合包，作者将一些网络上免费的架站资源重新包装成单一的安装程序，以方便初学者快速完成架站，AppServ 所包含的软件有：Apache、Apache Monitor、PHP、MySQL、phpMyAdmin等。&lt;/p&gt;
&lt;p&gt;目前AppServ主要有两个版本，一个是针对PHP5+MySQL5的，而另外一个是针对PHP6+MySQL6的。具体的参数如下：&lt;/p&gt;
&lt;p&gt;AppServ 2.6.0&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Apache 2.2.8&lt;/li&gt;
&lt;li&gt;PHP 6.0.0-dev&lt;/li&gt;
&lt;li&gt;MySQL 6.0.4-alpha&lt;/li&gt;
&lt;li&gt;phpMyAdmin-2.10.3&lt;strong&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;如果你想尝新下PHP6+MySQL6，AppServ就是一个不错的选择。&lt;/p&gt;
&lt;p&gt;除此之外，AppServ还提供Zend Optimizer插件。&lt;/p&gt;
&lt;p&gt;AppServ官方网站：&lt;a href=&quot;http://www.appservnetwork.com/&quot;&gt;http://www.appservnetwork.com/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;CoreAMP&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;CoreAMP是一款适用于windows下开发PHP站点的完全绿色服务器端集成环境。解压到任意非中文目录即可使用，简单拷贝即可部署多个项目环境，控制台方式和服务方式随意组合，查看访问日志和SQL日志简单方便，附有详细的教程可自己动手制作。&lt;/p&gt;
&lt;p&gt;CoreAMP的功能介绍&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;CoreAMP支持XP/2003/Vista/Win7/2008等多种Windows平台。&lt;/li&gt;
&lt;li&gt;CoreAMP安装简单，直接下载后解压缩打开控制中心选择安装服务即可。&lt;/li&gt;
&lt;li&gt;Web服务器既可以选择Apache也可以选择Nginx，方便开发者编写Nginx下的Rewrite。&lt;/li&gt;
&lt;li&gt;CoreAMP包含了5.2和5.3两个版本的PHP，可以根据兼容性等需求自由选择。&lt;/li&gt;
&lt;li&gt;集成ZendDebug、ZendOptimizer、XDebug、XCache、memcached、svnserver、PHPUnit、phpDocumentor、phpMyAdmin，让开发者更惬意。&lt;/li&gt;
&lt;li&gt;CoreAMP既适用于开发环境也适用于运营环境，有两套PHP和Mysql配置可以来回切换。&lt;/li&gt;
&lt;li&gt;CoreAMP是绿色软件，除安装服务外不会写注册表或写文件，甚至可以使用启动控制台这种纯绿色的方式。&lt;/li&gt;
&lt;li&gt;CoreAMP中的配置全部使用相对路径，可以实现自由移动和多处部署，完全可以放到U盘上去随时用随时启。&lt;/li&gt;
&lt;li&gt;在控制集成包不超大的情况下，尽可能保留所有的PHP扩展组件，保证各软件的完整性和使用最新稳定版本。&lt;/li&gt;
&lt;li&gt;使用批处理编写的强大的控制中心，可以检查和自由修改，同时readme.txt有完整详细的集成包制作过程。&lt;/li&gt;
&lt;li&gt;支持各种版本IIS用FastCGI方式启动PHP，并可以单独启动Mysql服务，实现IIS+PHP+Mysql的梦幻组合。&lt;/li&gt;
&lt;li&gt;支持配置多个虚机，若目录名和域名相同的话可以实现拖动Web目录下的文件到控制中心按回车可直接访问。&lt;/li&gt;
&lt;li&gt;CoreAMP可与其他安装的PHP集成环境共存，如果web目录是htdocs直接解压到同级目录启动服务即可访问。&lt;/li&gt;
&lt;li&gt;这么强大功能的CoreAMP经7z压缩后仅 26M 。&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;CoreAMP包含的软件&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Apache 2.2.17&lt;/li&gt;
&lt;li&gt;Mysql 5.1.56&lt;/li&gt;
&lt;li&gt;PHP 5.2.17（内含ZendDebugger、ZendOptimizer）&lt;/li&gt;
&lt;li&gt;PHP 5.3.5（内含XDebug、XCache）&lt;/li&gt;
&lt;li&gt;Nginx 0.8.54&lt;/li&gt;
&lt;li&gt;memcached 1.4.5&lt;/li&gt;
&lt;li&gt;Subversion Server 1.6.12&lt;/li&gt;
&lt;li&gt;PHPUnit 3.5.13&lt;/li&gt;
&lt;li&gt;phpDocumentor 1.4.3&lt;/li&gt;
&lt;li&gt;phpMyAdmin 3.3.10&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;CoreAMP的目录结构&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;htdocs/ &lt;em&gt;&amp;lt;–这是默认的web目录&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;server/&lt;/li&gt;
&lt;li&gt;server/mysql-5.1.56/data/ &lt;em&gt;&amp;lt;–这是存放数据库文件的目录&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;server/subversion-1.6.12/conf/&lt;br&gt;
&lt;em&gt;&amp;lt;–这是存放SVN版本控制配置文件的目录&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;server/subversion-1.6.12/svn_repository/&lt;br&gt;
&lt;em&gt;&amp;lt;–这是存放SVN版本控制的数据仓库目录&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;readme.txt&lt;/li&gt;
&lt;li&gt;start.bat &lt;em&gt;&amp;lt;–这是控制中心&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;CoreAMP官方网址：&lt;a href=&quot;http://code.google.com/p/coreamp/&quot;&gt;http://code.google.com/p/coreamp/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;VertrigoServ&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;VertrigoServ 是一个Windows平台下的非常专业的、易于安装的免费网络开发环境，它集成了Apache, PHP, MySQL, SQLite, SQLiteManager, PhpMyAdmin, Zend Optimizer。采用方便的集成安装包，所有组件 安装于统一目录下，安装完成后，无须配置即可使用。具有卸载程序。VertrigoServ无论对于初学者还是高级用户都非常合适。&lt;/p&gt;
&lt;p&gt;VertrigoServ的主要特点：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;体积小(LZMA压缩)&lt;/li&gt;
&lt;li&gt;所含软件包为最新版本，安全性高&lt;/li&gt;
&lt;li&gt;安装简单，使用方便&lt;/li&gt;
&lt;li&gt;自动安装，无须配置&lt;/li&gt;
&lt;li&gt;与各Windows版本兼容&lt;/li&gt;
&lt;li&gt;完全免费&lt;/li&gt;
&lt;li&gt;波兰语和英语&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;VertrigoServ最新稳定版为 2.24，主要包含以下组件：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Apache 2.2.17&lt;/li&gt;
&lt;li&gt;PHP 5.3.6&lt;/li&gt;
&lt;li&gt;MySQL 5.5.10&lt;/li&gt;
&lt;li&gt;SQLite 3.7.5&lt;/li&gt;
&lt;li&gt;Smarty 3.0.7&lt;/li&gt;
&lt;li&gt;PhpMyAdmin 3.3.9.2&lt;/li&gt;
&lt;li&gt;Xdebug 2.1.0&lt;/li&gt;
&lt;li&gt;SQLiteManager 1.2.4&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;其中比较有特色的是包含了SQLite，对于SQLite有爱的童鞋可以尝试使用下。&lt;/p&gt;
&lt;p&gt;VertrigoServ官方网址：&lt;a href=&quot;http://vertrigo.sourceforge.net/?lang=cn&quot;&gt;http://vertrigo.sourceforge.net/?lang=cn&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;APM Express 集成运行环境（QeePHP定制）&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;APM Express 是一个集成了 Apache 2.2、PHP5、MySQL 5，以及 phpMyAdmin、QeePHP 框架（含示例）的绿色集成运行环境，简称为“APMXE”。解压缩即可使用，不写入任何系统文件，100% 绿色。主要包含组件有：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Apache 2.2（完整）&lt;/li&gt;
&lt;li&gt; PHP 5.2.9–2（完整）&lt;/li&gt;
&lt;li&gt; XCache 2.0.4&lt;/li&gt;
&lt;li&gt; MySQL 5.0（服务端和命令行工具）&lt;/li&gt;
&lt;li&gt; phpMyAdmin 3.2&lt;/li&gt;
&lt;li&gt; QeePHP 2.1（含示例）&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;官方网址为：&lt;a href=&quot;http://qeephp.com/projects/apmxe&quot;&gt;http://qeephp.com/projects/apmxe&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;DedeAMPZ-PHP环境整合套件（DeDeCMS定制）&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;DedeAMPZ 是直接整合PHP + Apache + MySql 的服务器环境管理软件，操作十分傻瓜化，适合初中级水平的站长使用。&lt;br&gt;
主要具有如下特点：&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;支持php4、php5、MySql4、MySql5、Apache2.2、Zend Optimizer-3.3.0；(完整版)&lt;/li&gt;
&lt;li&gt; 安装使用十分简单，并支持在php4与php5中切换；&lt;/li&gt;
&lt;li&gt; 经过专业的处理后，使你配置apache+php的站点更简单；&lt;/li&gt;
&lt;li&gt; 本软件内置DedeCms在线安装程序，让你安装调试DedeCms更加简单；&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;官方网址为：&lt;a href=&quot;http://www.dedecms.com/products/dedecms/downloads/&quot;&gt;http://www.dedecms.com/products/dedecms/downloads/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;ComsenzEXP（Discux 定制）&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;ComsenzEXP 是康盛全新开发制作的一套社区产品体验安装包。ComsenzEXP 可以自动安装 PHP + MySQL 运行环境，并且自动安装好 Discuz! X2 正式版 ，使用户能够完方便整的体验 Comsenz 社区产品所带来的魅力。目前集成的软件为：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;DiscuzX2 GBK&lt;/li&gt;
&lt;li&gt; Apache 2.2.19&lt;/li&gt;
&lt;li&gt; MySQL 5.0.90&lt;/li&gt;
&lt;li&gt; PHP 5.2.17&lt;/li&gt;
&lt;li&gt; Zend Optimizer 3.3.3&lt;/li&gt;
&lt;li&gt; phpMyAdmin 3.1.0&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;官方网站为：&lt;a href=&quot;http://www.discuz.net/thread-2242502-1-1.html&quot;&gt;http://www.discuz.net/thread-2242502-1-1.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;CYDPHP&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;CYDPHP 绿色 免安装 针对Windows下快速开发PHP及B/S开发 模式下日常必备功能的一键整合开发环境。CYDPHP 功能组件：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;PHP 5.3.3&lt;/li&gt;
&lt;li&gt; Nginx 0.8.39&lt;/li&gt;
&lt;li&gt; MySQL 5.1.48&lt;/li&gt;
&lt;li&gt; memcache 2.2.5&lt;/li&gt;
&lt;li&gt; eAccelerator 0.9.6&lt;/li&gt;
&lt;li&gt; Xdebug 2.1.0&lt;/li&gt;
&lt;li&gt; phpMyAdmin mysql管理&lt;/li&gt;
&lt;li&gt; AB 压力测试&lt;/li&gt;
&lt;li&gt; javaScript 压缩工具&lt;/li&gt;
&lt;li&gt; CSS 压缩工具&lt;/li&gt;
&lt;li&gt; PHP 代码格式美化&lt;/li&gt;
&lt;li&gt; MySQL 数据批量生成工具&lt;/li&gt;
&lt;li&gt; xdebug分析工具&lt;/li&gt;
&lt;li&gt; SFTP/FTP&lt;/li&gt;
&lt;li&gt; Windows 常用命令&lt;/li&gt;
&lt;li&gt; DOS Linux shell  模拟工具&lt;/li&gt;
&lt;li&gt; 端口进程分析工具&lt;/li&gt;
&lt;li&gt; 翻译工具&lt;/li&gt;
&lt;li&gt; 取色工具&lt;/li&gt;
&lt;li&gt; 快捷文档软件管理工具&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;官方网站：&lt;a href=&quot;http://www.cydphp.cn/&quot;&gt;http://www.cydphp.cn/&lt;/a&gt;&lt;/p&gt;
© 2004-2011 &lt;a href=&quot;http://www.jeff-chen.com&quot;&gt;Jeff-Chen.Com&lt;/a&gt; 版权所有 |
&lt;a href=&quot;http://www.jeff-chen.com/the-integration-of-php-runtime-environment-daquan/&quot;&gt;文章链接&lt;/a&gt; |
&lt;strong&gt;&lt;a href=&quot;http://www.jeff-chen.com/the-integration-of-php-runtime-environment-daquan/#respond&quot;&gt;发表评论&lt;/a&gt;&lt;/strong&gt;
&lt;br&gt;
关键词: &lt;a href=&quot;http://www.jeff-chen.com/tag/apache/&quot; rel=&quot;tag&quot;&gt;Apache&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/mysql/&quot; rel=&quot;tag&quot;&gt;MySQL&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/nginx/&quot; rel=&quot;tag&quot;&gt;Nginx&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/php/&quot; rel=&quot;tag&quot;&gt;PHP&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/xampp/&quot; rel=&quot;tag&quot;&gt;XAMPP&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/server/&quot; rel=&quot;tag&quot;&gt;服务器&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/website/&quot; rel=&quot;tag&quot;&gt;网站&lt;/a&gt;
&lt;hr&gt;
收藏: &lt;a href=&quot;http://shuqian.qq.com/post?title=PHP%E9%9B%86%E6%88%90%E8%BF%90%E8%A1%8C%E7%8E%AF%E5%A2%83%E5%A4%A7%E5%85%A8&amp;amp;uri=http://www.jeff-chen.com/the-integration-of-php-runtime-environment-daquan/&quot; rel=&quot;nofollow&quot;&gt;QQ书签&lt;/a&gt;, &lt;a href=&quot;http://www.google.com/bookmarks/mark?op=edit&amp;amp;bkmk=http://www.jeff-chen.com/the-integration-of-php-runtime-environment-daquan/&amp;amp;title=PHP%E9%9B%86%E6%88%90%E8%BF%90%E8%A1%8C%E7%8E%AF%E5%A2%83%E5%A4%A7%E5%85%A8&quot; rel=&quot;nofollow&quot;&gt;Google书签&lt;/a&gt;, &lt;a href=&quot;http://cang.baidu.com/do/add?it=PHP%E9%9B%86%E6%88%90%E8%BF%90%E8%A1%8C%E7%8E%AF%E5%A2%83%E5%A4%A7%E5%85%A8&amp;amp;iu=http://www.jeff-chen.com/the-integration-of-php-runtime-environment-daquan/&amp;amp;dc=&amp;amp;fr=ien#nw=1&quot; rel=&quot;nofollow&quot;&gt;百度搜藏&lt;/a&gt; | 分享: &lt;a href=&quot;http://www.xianguo.com/service/submitdigg/?link=http://www.jeff-chen.com/the-integration-of-php-runtime-environment-daquan/&amp;amp;title=PHP%E9%9B%86%E6%88%90%E8%BF%90%E8%A1%8C%E7%8E%AF%E5%A2%83%E5%A4%A7%E5%85%A8&quot; rel=&quot;nofollow&quot;&gt;鲜果推荐&lt;/a&gt;, &lt;a href=&quot;http://v.t.sina.com.cn/share/share.php?title=PHP%E9%9B%86%E6%88%90%E8%BF%90%E8%A1%8C%E7%8E%AF%E5%A2%83%E5%A4%A7%E5%85%A8%20-%20http://www.jeff-chen.com/the-integration-of-php-runtime-environment-daquan/&quot; rel=&quot;nofollow&quot;&gt;新浪微博&lt;/a&gt;, &lt;a href=&quot;http://v.t.qq.com/share/share.php?title=PHP%E9%9B%86%E6%88%90%E8%BF%90%E8%A1%8C%E7%8E%AF%E5%A2%83%E5%A4%A7%E5%85%A8&amp;amp;url=http://www.jeff-chen.com/the-integration-of-php-runtime-environment-daquan/&quot; title=&quot;分享到腾讯微博&quot; rel=&quot;nofollow&quot;&gt;腾讯微博&lt;/a&gt;, &lt;a href=&quot;http://share.xiaonei.com/share/buttonshare.do?link=http://www.jeff-chen.com/the-integration-of-php-runtime-environment-daquan/&amp;amp;title=PHP%E9%9B%86%E6%88%90%E8%BF%90%E8%A1%8C%E7%8E%AF%E5%A2%83%E5%A4%A7%E5%85%A8&quot; title=&quot;分享到人人网&quot; rel=&quot;nofollow&quot;&gt;人人网&lt;/a&gt;, &lt;a href=&quot;http://www.kaixin001.com/repaste/share.php?url=http://www.jeff-chen.com/the-integration-of-php-runtime-environment-daquan/&amp;amp;title=PHP%E9%9B%86%E6%88%90%E8%BF%90%E8%A1%8C%E7%8E%AF%E5%A2%83%E5%A4%A7%E5%85%A8&quot; title=&quot;分享到开心网&quot; rel=&quot;nofollow&quot;&gt;开心网&lt;/a&gt;, &lt;a href=&quot;http://www.douban.com/recommend/?url=http://www.jeff-chen.com/the-integration-of-php-runtime-environment-daquan/&amp;amp;title=PHP%E9%9B%86%E6%88%90%E8%BF%90%E8%A1%8C%E7%8E%AF%E5%A2%83%E5%A4%A7%E5%85%A8&amp;amp;sel=&amp;amp;v=1&quot; title=&quot;分享到豆瓣推荐&quot; rel=&quot;nofollow&quot;&gt;豆瓣推荐&lt;/a&gt;, &lt;a href=&quot;http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=http://www.jeff-chen.com/the-integration-of-php-runtime-environment-daquan/&quot; title=&quot;分享到QQ空间&quot; rel=&quot;nofollow&quot;&gt;QQ空间&lt;/a&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/567773388/sharer/feedsky/s.gif?r=http://www.jeff-chen.com/the-integration-of-php-runtime-environment-daquan/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;</content:encoded><category>文库</category><category>Apache</category><category>MySQL</category><category>Nginx</category><category>PHP</category><category>XAMPP</category><category>服务器</category><category>网站</category><pubDate>Wed, 19 Oct 2011 16:16:15 +0800</pubDate><guid isPermaLink="false">tag:google.com,2005:reader/item/48085aea11c19861</guid><dc:creator>Jeff</dc:creator><fs:srclink>http://www.jeff-chen.com/the-integration-of-php-runtime-environment-daquan/</fs:srclink><fs:srcfeed>http://www.google.com/reader/public/atom/user%2F04568479978967443037%2Flabel%2FSharer</fs:srcfeed><fs:itemid>feedsky/sharer/~8223687/567773388/6299489</fs:itemid></item><item><title>WordPress 非插件自动加 description 和 keywords (2)</title><link atom:type="text/html">http://www.jeff-chen.com/wordpress-plug-ins-to-achieve-non-automatic-description-and-keywords-2/</link><id xmlns="http://www.w3.org/2005/Atom" gr:original-id="http://www.jeff-chen.com/?p=1768">tag:google.com,2005:reader/item/ea2f107bb79c0a37</id><content xmlns="http://www.w3.org/2005/Atom" xml:base="http://www.jeff-chen.com/" type="html">&lt;p&gt;我们在之前介绍过《&lt;a title=&quot;WordPress 非插件实现 head 自动加 description 和 keywords&quot; href=&quot;http://www.jeff-chen.com/wordpress-non-plugin-head-automatic-description-and-keywords/&quot;&gt;WordPress 非插件实现 head 自动加 description 和 keywords&lt;/a&gt;》 ，来自 Willin Kan 的 Auto-description。以下要介绍代码大同小异，已内置在 a-supercms 2.8 中。到现在，description 和 keywords 对于搜索引擎的意义已经不重要，所以本文将实现方法贴出，新版的 a-supercms 将不再内置。&lt;/p&gt;
&lt;p&gt;具体实现办法如下:每篇文章的内容不同，我们该如何让wordpress自动添加文章描述和关键词呢？其实办法很简单，我们只需要在模板头部添加如一段PHP代码，让wordpress自动识别页面是首页还是文章页，当然也可以识别分类页、标签页这些。再分别为不同的页面添加不同的Description和Keywords。&lt;/p&gt;
&lt;p&gt;如果是文章页面，Description就自动截取文章的前220字符作为页面的描述，文章的tag就作为页面的关键词。Description是不会有乱码的。&lt;/p&gt;
&lt;p&gt;1. 打开你的模板文件header.php，在最前面添加如下PHP代码：&lt;br&gt;
[ccIlW_php highlight=&quot;&quot;]&lt;br&gt;
&amp;lt; ?php&lt;br&gt;
//判断是否为首页&lt;br&gt;
if (is_home()) {&lt;br&gt;
$description = &quot;这里填写你的博客首页的描述，最多220字符&quot;&lt;br&gt;
$keywords = &quot;这里填写你的博客首页的关键词，用英文逗号分开&quot;&lt;br&gt;
//判断是否为文章页&lt;br&gt;
} else if (is_single()) {&lt;br&gt;
if ($post-&amp;gt;post_excerpt) {&lt;br&gt;
$description = $post-&amp;gt;post_excerpt;&lt;br&gt;
} else {&lt;br&gt;
$description = mb_strimwidth(strip_tags(&lt;br&gt;
apply_filters(&amp;#39;the_content&amp;#39;,$post-&amp;gt;post_content)&lt;br&gt;
),0,220);&lt;br&gt;
}&lt;br&gt;
$keywords = &quot;&quot;;&lt;br&gt;
$tags = wp_get_post_tags($post-&amp;gt;ID);&lt;br&gt;
foreach ($tags as $tag ) {&lt;br&gt;
$keywords = $keywords . $tag-&amp;gt;name . &amp;quot;,&amp;quot;;&lt;br&gt;
}&lt;br&gt;
//判断是否为分类页&lt;br&gt;
} else if (is_category()) {&lt;br&gt;
$description = category_description();&lt;br&gt;
}&lt;br&gt;
?&amp;gt;[/ccIlW_php]&lt;/p&gt;
&lt;p&gt;2. 查找标签：&lt;br&gt;
&lt;span style=&quot;direction:ltr&quot;&gt;&amp;lt;/head&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;3. 在前面加入&lt;br&gt;
&amp;lt;meta name=&amp;quot;keywords&amp;quot; content=&amp;quot;&amp;lt;?php echo $keywords; ?&amp;gt;&amp;quot; /&amp;gt;&lt;br&gt;
&amp;lt;meta name=&amp;quot;description&amp;quot; content=&amp;quot;&amp;lt;?php echo $description; ?&amp;gt;&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt;4. 大功告成！&lt;/p&gt;
&lt;p&gt;补充：&lt;/p&gt;
&lt;p&gt;网上有些文章提到的用如下代码截断文章办法其实不行，对于中文来说会产生乱码，甚至导致整个页面乱码：&lt;br&gt;
[ccIlW_php highlight=&amp;quot;&amp;quot;]$description = substr(strip_tags($post-&amp;gt;post_content),0,220);[/ccIlW_php]&lt;/p&gt;
&lt;p&gt;而如果我们用mb_strimwidth函数就不会了&lt;br&gt;
[ccIlW_php highlight=&quot;&quot;]&lt;br&gt;
$description = mb_strimwidth(&lt;br&gt;
strip_tags(apply_filters(&lt;br&gt;
&amp;#39;the_content&amp;#39;,$post-&amp;gt;post_content)&lt;br&gt;
),6,220);&lt;br&gt;
[/ccIlW_php]&lt;/p&gt;
&lt;p&gt;希望对你有帮助！&lt;/p&gt;
© 2004-2011 &lt;a href=&quot;http://www.jeff-chen.com&quot;&gt;Jeff-Chen.Com&lt;/a&gt; 版权所有 |
&lt;a href=&quot;http://www.jeff-chen.com/wordpress-plug-ins-to-achieve-non-automatic-description-and-keywords-2/&quot;&gt;文章链接&lt;/a&gt; |
&lt;strong&gt;&lt;a href=&quot;http://www.jeff-chen.com/wordpress-plug-ins-to-achieve-non-automatic-description-and-keywords-2/#respond&quot;&gt;发表评论&lt;/a&gt;&lt;/strong&gt;
&lt;br&gt;
关键词: &lt;a href=&quot;http://www.jeff-chen.com/tag/wordpress/&quot; rel=&quot;tag&quot;&gt;WordPress&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/code/&quot; rel=&quot;tag&quot;&gt;代码&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/technology/&quot; rel=&quot;tag&quot;&gt;技术&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/tutorials/&quot; rel=&quot;tag&quot;&gt;教程&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/template/&quot; rel=&quot;tag&quot;&gt;模板&lt;/a&gt;
&lt;hr&gt;
收藏: &lt;a href=&quot;http://shuqian.qq.com/post?title=WordPress%20%E9%9D%9E%E6%8F%92%E4%BB%B6%E8%87%AA%E5%8A%A8%E5%8A%A0%20description%20%E5%92%8C%20keywords%20(2)&amp;amp;uri=http://www.jeff-chen.com/wordpress-plug-ins-to-achieve-non-automatic-description-and-keywords-2/&quot; rel=&quot;nofollow&quot;&gt;QQ书签&lt;/a&gt;, &lt;a href=&quot;http://www.google.com/bookmarks/mark?op=edit&amp;amp;bkmk=http://www.jeff-chen.com/wordpress-plug-ins-to-achieve-non-automatic-description-and-keywords-2/&amp;amp;title=WordPress%20%E9%9D%9E%E6%8F%92%E4%BB%B6%E8%87%AA%E5%8A%A8%E5%8A%A0%20description%20%E5%92%8C%20keywords%20(2)&quot; rel=&quot;nofollow&quot;&gt;Google书签&lt;/a&gt;, &lt;a href=&quot;http://cang.baidu.com/do/add?it=WordPress%20%E9%9D%9E%E6%8F%92%E4%BB%B6%E8%87%AA%E5%8A%A8%E5%8A%A0%20description%20%E5%92%8C%20keywords%20(2)&amp;amp;iu=http://www.jeff-chen.com/wordpress-plug-ins-to-achieve-non-automatic-description-and-keywords-2/&amp;amp;dc=&amp;amp;fr=ien#nw=1&quot; rel=&quot;nofollow&quot;&gt;百度搜藏&lt;/a&gt; | 分享: &lt;a href=&quot;http://www.xianguo.com/service/submitdigg/?link=http://www.jeff-chen.com/wordpress-plug-ins-to-achieve-non-automatic-description-and-keywords-2/&amp;amp;title=WordPress%20%E9%9D%9E%E6%8F%92%E4%BB%B6%E8%87%AA%E5%8A%A8%E5%8A%A0%20description%20%E5%92%8C%20keywords%20(2)&quot; rel=&quot;nofollow&quot;&gt;鲜果推荐&lt;/a&gt;, &lt;a href=&quot;http://v.t.sina.com.cn/share/share.php?title=WordPress%20%E9%9D%9E%E6%8F%92%E4%BB%B6%E8%87%AA%E5%8A%A8%E5%8A%A0%20description%20%E5%92%8C%20keywords%20(2)%20-%20http://www.jeff-chen.com/wordpress-plug-ins-to-achieve-non-automatic-description-and-keywords-2/&quot; rel=&quot;nofollow&quot;&gt;新浪微博&lt;/a&gt;, &lt;a href=&quot;http://v.t.qq.com/share/share.php?title=WordPress%20%E9%9D%9E%E6%8F%92%E4%BB%B6%E8%87%AA%E5%8A%A8%E5%8A%A0%20description%20%E5%92%8C%20keywords%20(2)&amp;amp;url=http://www.jeff-chen.com/wordpress-plug-ins-to-achieve-non-automatic-description-and-keywords-2/&quot; title=&quot;分享到腾讯微博&quot; rel=&quot;nofollow&quot;&gt;腾讯微博&lt;/a&gt;, &lt;a href=&quot;http://share.xiaonei.com/share/buttonshare.do?link=http://www.jeff-chen.com/wordpress-plug-ins-to-achieve-non-automatic-description-and-keywords-2/&amp;amp;title=WordPress%20%E9%9D%9E%E6%8F%92%E4%BB%B6%E8%87%AA%E5%8A%A8%E5%8A%A0%20description%20%E5%92%8C%20keywords%20(2)&quot; title=&quot;分享到人人网&quot; rel=&quot;nofollow&quot;&gt;人人网&lt;/a&gt;, &lt;a href=&quot;http://www.kaixin001.com/repaste/share.php?url=http://www.jeff-chen.com/wordpress-plug-ins-to-achieve-non-automatic-description-and-keywords-2/&amp;amp;title=WordPress%20%E9%9D%9E%E6%8F%92%E4%BB%B6%E8%87%AA%E5%8A%A8%E5%8A%A0%20description%20%E5%92%8C%20keywords%20(2)&quot; title=&quot;分享到开心网&quot; rel=&quot;nofollow&quot;&gt;开心网&lt;/a&gt;, &lt;a href=&quot;http://www.douban.com/recommend/?url=http://www.jeff-chen.com/wordpress-plug-ins-to-achieve-non-automatic-description-and-keywords-2/&amp;amp;title=WordPress%20%E9%9D%9E%E6%8F%92%E4%BB%B6%E8%87%AA%E5%8A%A8%E5%8A%A0%20description%20%E5%92%8C%20keywords%20(2)&amp;amp;sel=&amp;amp;v=1&quot; title=&quot;分享到豆瓣推荐&quot; rel=&quot;nofollow&quot;&gt;豆瓣推荐&lt;/a&gt;, &lt;a href=&quot;http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=http://www.jeff-chen.com/wordpress-plug-ins-to-achieve-non-automatic-description-and-keywords-2/&quot; title=&quot;分享到QQ空间&quot; rel=&quot;nofollow&quot;&gt;QQ空间&lt;/a&gt;</content><author xmlns="http://www.w3.org/2005/Atom"><name>Jeff</name></author><source xmlns="http://www.w3.org/2005/Atom" gr:stream-id="feed/http://www.jeff-chen.com/feed/"><id>tag:google.com,2005:reader/feed/http://www.jeff-chen.com/feed/</id><title type="html">Jeff-Chen.Com</title><link rel="alternate" href="http://www.jeff-chen.com" type="text/html"></link></source><content:encoded>&lt;p&gt;我们在之前介绍过《&lt;a title=&quot;WordPress 非插件实现 head 自动加 description 和 keywords&quot; href=&quot;http://www.jeff-chen.com/wordpress-non-plugin-head-automatic-description-and-keywords/&quot;&gt;WordPress 非插件实现 head 自动加 description 和 keywords&lt;/a&gt;》 ，来自 Willin Kan 的 Auto-description。以下要介绍代码大同小异，已内置在 a-supercms 2.8 中。到现在，description 和 keywords 对于搜索引擎的意义已经不重要，所以本文将实现方法贴出，新版的 a-supercms 将不再内置。&lt;/p&gt;
&lt;p&gt;具体实现办法如下:每篇文章的内容不同，我们该如何让wordpress自动添加文章描述和关键词呢？其实办法很简单，我们只需要在模板头部添加如一段PHP代码，让wordpress自动识别页面是首页还是文章页，当然也可以识别分类页、标签页这些。再分别为不同的页面添加不同的Description和Keywords。&lt;/p&gt;
&lt;p&gt;如果是文章页面，Description就自动截取文章的前220字符作为页面的描述，文章的tag就作为页面的关键词。Description是不会有乱码的。&lt;/p&gt;
&lt;p&gt;1. 打开你的模板文件header.php，在最前面添加如下PHP代码：&lt;br&gt;
[ccIlW_php highlight=&quot;&quot;]&lt;br&gt;
&amp;lt; ?php&lt;br&gt;
//判断是否为首页&lt;br&gt;
if (is_home()) {&lt;br&gt;
$description = &quot;这里填写你的博客首页的描述，最多220字符&quot;&lt;br&gt;
$keywords = &quot;这里填写你的博客首页的关键词，用英文逗号分开&quot;&lt;br&gt;
//判断是否为文章页&lt;br&gt;
} else if (is_single()) {&lt;br&gt;
if ($post-&amp;gt;post_excerpt) {&lt;br&gt;
$description = $post-&amp;gt;post_excerpt;&lt;br&gt;
} else {&lt;br&gt;
$description = mb_strimwidth(strip_tags(&lt;br&gt;
apply_filters(&amp;#39;the_content&amp;#39;,$post-&amp;gt;post_content)&lt;br&gt;
),0,220);&lt;br&gt;
}&lt;br&gt;
$keywords = &quot;&quot;;&lt;br&gt;
$tags = wp_get_post_tags($post-&amp;gt;ID);&lt;br&gt;
foreach ($tags as $tag ) {&lt;br&gt;
$keywords = $keywords . $tag-&amp;gt;name . &amp;quot;,&amp;quot;;&lt;br&gt;
}&lt;br&gt;
//判断是否为分类页&lt;br&gt;
} else if (is_category()) {&lt;br&gt;
$description = category_description();&lt;br&gt;
}&lt;br&gt;
?&amp;gt;[/ccIlW_php]&lt;/p&gt;
&lt;p&gt;2. 查找标签：&lt;br&gt;
&lt;span style=&quot;direction:ltr&quot;&gt;&amp;lt;/head&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;3. 在前面加入&lt;br&gt;
&amp;lt;meta name=&amp;quot;keywords&amp;quot; content=&amp;quot;&amp;lt;?php echo $keywords; ?&amp;gt;&amp;quot; /&amp;gt;&lt;br&gt;
&amp;lt;meta name=&amp;quot;description&amp;quot; content=&amp;quot;&amp;lt;?php echo $description; ?&amp;gt;&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt;4. 大功告成！&lt;/p&gt;
&lt;p&gt;补充：&lt;/p&gt;
&lt;p&gt;网上有些文章提到的用如下代码截断文章办法其实不行，对于中文来说会产生乱码，甚至导致整个页面乱码：&lt;br&gt;
[ccIlW_php highlight=&amp;quot;&amp;quot;]$description = substr(strip_tags($post-&amp;gt;post_content),0,220);[/ccIlW_php]&lt;/p&gt;
&lt;p&gt;而如果我们用mb_strimwidth函数就不会了&lt;br&gt;
[ccIlW_php highlight=&quot;&quot;]&lt;br&gt;
$description = mb_strimwidth(&lt;br&gt;
strip_tags(apply_filters(&lt;br&gt;
&amp;#39;the_content&amp;#39;,$post-&amp;gt;post_content)&lt;br&gt;
),6,220);&lt;br&gt;
[/ccIlW_php]&lt;/p&gt;
&lt;p&gt;希望对你有帮助！&lt;/p&gt;
© 2004-2011 &lt;a href=&quot;http://www.jeff-chen.com&quot;&gt;Jeff-Chen.Com&lt;/a&gt; 版权所有 |
&lt;a href=&quot;http://www.jeff-chen.com/wordpress-plug-ins-to-achieve-non-automatic-description-and-keywords-2/&quot;&gt;文章链接&lt;/a&gt; |
&lt;strong&gt;&lt;a href=&quot;http://www.jeff-chen.com/wordpress-plug-ins-to-achieve-non-automatic-description-and-keywords-2/#respond&quot;&gt;发表评论&lt;/a&gt;&lt;/strong&gt;
&lt;br&gt;
关键词: &lt;a href=&quot;http://www.jeff-chen.com/tag/wordpress/&quot; rel=&quot;tag&quot;&gt;WordPress&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/code/&quot; rel=&quot;tag&quot;&gt;代码&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/technology/&quot; rel=&quot;tag&quot;&gt;技术&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/tutorials/&quot; rel=&quot;tag&quot;&gt;教程&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/template/&quot; rel=&quot;tag&quot;&gt;模板&lt;/a&gt;
&lt;hr&gt;
收藏: &lt;a href=&quot;http://shuqian.qq.com/post?title=WordPress%20%E9%9D%9E%E6%8F%92%E4%BB%B6%E8%87%AA%E5%8A%A8%E5%8A%A0%20description%20%E5%92%8C%20keywords%20(2)&amp;amp;uri=http://www.jeff-chen.com/wordpress-plug-ins-to-achieve-non-automatic-description-and-keywords-2/&quot; rel=&quot;nofollow&quot;&gt;QQ书签&lt;/a&gt;, &lt;a href=&quot;http://www.google.com/bookmarks/mark?op=edit&amp;amp;bkmk=http://www.jeff-chen.com/wordpress-plug-ins-to-achieve-non-automatic-description-and-keywords-2/&amp;amp;title=WordPress%20%E9%9D%9E%E6%8F%92%E4%BB%B6%E8%87%AA%E5%8A%A8%E5%8A%A0%20description%20%E5%92%8C%20keywords%20(2)&quot; rel=&quot;nofollow&quot;&gt;Google书签&lt;/a&gt;, &lt;a href=&quot;http://cang.baidu.com/do/add?it=WordPress%20%E9%9D%9E%E6%8F%92%E4%BB%B6%E8%87%AA%E5%8A%A8%E5%8A%A0%20description%20%E5%92%8C%20keywords%20(2)&amp;amp;iu=http://www.jeff-chen.com/wordpress-plug-ins-to-achieve-non-automatic-description-and-keywords-2/&amp;amp;dc=&amp;amp;fr=ien#nw=1&quot; rel=&quot;nofollow&quot;&gt;百度搜藏&lt;/a&gt; | 分享: &lt;a href=&quot;http://www.xianguo.com/service/submitdigg/?link=http://www.jeff-chen.com/wordpress-plug-ins-to-achieve-non-automatic-description-and-keywords-2/&amp;amp;title=WordPress%20%E9%9D%9E%E6%8F%92%E4%BB%B6%E8%87%AA%E5%8A%A8%E5%8A%A0%20description%20%E5%92%8C%20keywords%20(2)&quot; rel=&quot;nofollow&quot;&gt;鲜果推荐&lt;/a&gt;, &lt;a href=&quot;http://v.t.sina.com.cn/share/share.php?title=WordPress%20%E9%9D%9E%E6%8F%92%E4%BB%B6%E8%87%AA%E5%8A%A8%E5%8A%A0%20description%20%E5%92%8C%20keywords%20(2)%20-%20http://www.jeff-chen.com/wordpress-plug-ins-to-achieve-non-automatic-description-and-keywords-2/&quot; rel=&quot;nofollow&quot;&gt;新浪微博&lt;/a&gt;, &lt;a href=&quot;http://v.t.qq.com/share/share.php?title=WordPress%20%E9%9D%9E%E6%8F%92%E4%BB%B6%E8%87%AA%E5%8A%A8%E5%8A%A0%20description%20%E5%92%8C%20keywords%20(2)&amp;amp;url=http://www.jeff-chen.com/wordpress-plug-ins-to-achieve-non-automatic-description-and-keywords-2/&quot; title=&quot;分享到腾讯微博&quot; rel=&quot;nofollow&quot;&gt;腾讯微博&lt;/a&gt;, &lt;a href=&quot;http://share.xiaonei.com/share/buttonshare.do?link=http://www.jeff-chen.com/wordpress-plug-ins-to-achieve-non-automatic-description-and-keywords-2/&amp;amp;title=WordPress%20%E9%9D%9E%E6%8F%92%E4%BB%B6%E8%87%AA%E5%8A%A8%E5%8A%A0%20description%20%E5%92%8C%20keywords%20(2)&quot; title=&quot;分享到人人网&quot; rel=&quot;nofollow&quot;&gt;人人网&lt;/a&gt;, &lt;a href=&quot;http://www.kaixin001.com/repaste/share.php?url=http://www.jeff-chen.com/wordpress-plug-ins-to-achieve-non-automatic-description-and-keywords-2/&amp;amp;title=WordPress%20%E9%9D%9E%E6%8F%92%E4%BB%B6%E8%87%AA%E5%8A%A8%E5%8A%A0%20description%20%E5%92%8C%20keywords%20(2)&quot; title=&quot;分享到开心网&quot; rel=&quot;nofollow&quot;&gt;开心网&lt;/a&gt;, &lt;a href=&quot;http://www.douban.com/recommend/?url=http://www.jeff-chen.com/wordpress-plug-ins-to-achieve-non-automatic-description-and-keywords-2/&amp;amp;title=WordPress%20%E9%9D%9E%E6%8F%92%E4%BB%B6%E8%87%AA%E5%8A%A8%E5%8A%A0%20description%20%E5%92%8C%20keywords%20(2)&amp;amp;sel=&amp;amp;v=1&quot; title=&quot;分享到豆瓣推荐&quot; rel=&quot;nofollow&quot;&gt;豆瓣推荐&lt;/a&gt;, &lt;a href=&quot;http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=http://www.jeff-chen.com/wordpress-plug-ins-to-achieve-non-automatic-description-and-keywords-2/&quot; title=&quot;分享到QQ空间&quot; rel=&quot;nofollow&quot;&gt;QQ空间&lt;/a&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/566190762/sharer/feedsky/s.gif?r=http://www.jeff-chen.com/wordpress-plug-ins-to-achieve-non-automatic-description-and-keywords-2/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;</content:encoded><category>文库</category><category>WordPress</category><category>代码</category><category>技术</category><category>教程</category><category>模板</category><pubDate>Sat, 15 Oct 2011 14:37:10 +0800</pubDate><guid isPermaLink="false">tag:google.com,2005:reader/item/ea2f107bb79c0a37</guid><dc:creator>Jeff</dc:creator><fs:srclink>http://www.jeff-chen.com/wordpress-plug-ins-to-achieve-non-automatic-description-and-keywords-2/</fs:srclink><fs:srcfeed>http://www.google.com/reader/public/atom/user%2F04568479978967443037%2Flabel%2FSharer</fs:srcfeed><fs:itemid>feedsky/sharer/~8223687/566190762/6299489</fs:itemid></item><item><title>为 WordPress 添加“手气不错”功能</title><link atom:type="text/html">http://www.jeff-chen.com/add-feeling-lucky-feature-to-your-wordpress/</link><id xmlns="http://www.w3.org/2005/Atom" gr:original-id="http://www.jeff-chen.com/?p=1767">tag:google.com,2005:reader/item/be4cc174280aa9f8</id><content xmlns="http://www.w3.org/2005/Atom" xml:base="http://www.jeff-chen.com/" type="html">&lt;p&gt;有时你不想思考，想随意，你可以尝试点击本站的右上角“手气不错”这样的按钮，它可以随机给你推荐一篇文章。&lt;br&gt;
如果为你的博客也加上这个功能？其实很简单。在网站内加入以下代码即可。&lt;/p&gt;
&lt;p&gt;[ccIlW_php highlight=&quot;&quot;]&lt;br&gt;
&amp;lt; ?php $rand_post=get_posts(&amp;#39;numberposts=1&amp;amp;orderby=rand&amp;#39;); foreach($rand_post as $post) : ?&amp;gt;&lt;a href=&quot;javascript:void(0);&quot; title=&quot;&amp;lt; ?php the_title() ?&amp;gt;&quot;&gt;手气不错&lt;/a&gt;&amp;lt; ?php endforeach; ?&amp;gt;&lt;br&gt;
[/ccIlW_php]&lt;/p&gt;
&lt;p&gt;随机给“手气不错”加上文章链接。&lt;br&gt;
如果你不想被预先知道链接地址，实现如：http://www.***.com/random 这样的链接，可以创建一个模板文件，如random.php，将以下代码复制到此文件，然后到后台添加一个新页面，页面模板选择 random，保存后就生效了。&lt;/p&gt;
&lt;p&gt;[ccIlW_php highlight=&quot;&quot;]&lt;br&gt;
&amp;lt; ?php&lt;br&gt;
/*&lt;br&gt;
Template Name: random&lt;br&gt;
*/&lt;br&gt;
?&amp;gt;&lt;br&gt;
&amp;lt; ?php $rand_post=get_posts(&amp;#39;numberposts=1&amp;amp;orderby=rand&amp;#39;); foreach($rand_post as $post) : ?&amp;gt;&lt;br&gt;
&lt;br&gt;
&amp;lt; ?php endforeach; ?&amp;gt;&lt;br&gt;
[/ccIlW_php]&lt;/p&gt;
&lt;p&gt;当然，这样的网址形式还需要设置“固定链接”，否则网址的形式会是：http://www.***.com/?page_id=**&lt;/p&gt;
© 2004-2011 &lt;a href=&quot;http://www.jeff-chen.com&quot;&gt;Jeff-Chen.Com&lt;/a&gt; 版权所有 |
&lt;a href=&quot;http://www.jeff-chen.com/add-feeling-lucky-feature-to-your-wordpress/&quot;&gt;文章链接&lt;/a&gt; |
&lt;strong&gt;&lt;a href=&quot;http://www.jeff-chen.com/add-feeling-lucky-feature-to-your-wordpress/#respond&quot;&gt;4 条评论&lt;/a&gt;&lt;/strong&gt;
&lt;br&gt;
关键词: &lt;a href=&quot;http://www.jeff-chen.com/tag/wordpress/&quot; rel=&quot;tag&quot;&gt;WordPress&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/code/&quot; rel=&quot;tag&quot;&gt;代码&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/technology/&quot; rel=&quot;tag&quot;&gt;技术&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/tutorials/&quot; rel=&quot;tag&quot;&gt;教程&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/template/&quot; rel=&quot;tag&quot;&gt;模板&lt;/a&gt;
&lt;hr&gt;
收藏: &lt;a href=&quot;http://shuqian.qq.com/post?title=%E4%B8%BA%20WordPress%20%E6%B7%BB%E5%8A%A0%E2%80%9C%E6%89%8B%E6%B0%94%E4%B8%8D%E9%94%99%E2%80%9D%E5%8A%9F%E8%83%BD&amp;amp;uri=http://www.jeff-chen.com/add-feeling-lucky-feature-to-your-wordpress/&quot; rel=&quot;nofollow&quot;&gt;QQ书签&lt;/a&gt;, &lt;a href=&quot;http://www.google.com/bookmarks/mark?op=edit&amp;amp;bkmk=http://www.jeff-chen.com/add-feeling-lucky-feature-to-your-wordpress/&amp;amp;title=%E4%B8%BA%20WordPress%20%E6%B7%BB%E5%8A%A0%E2%80%9C%E6%89%8B%E6%B0%94%E4%B8%8D%E9%94%99%E2%80%9D%E5%8A%9F%E8%83%BD&quot; rel=&quot;nofollow&quot;&gt;Google书签&lt;/a&gt;, &lt;a href=&quot;http://cang.baidu.com/do/add?it=%E4%B8%BA%20WordPress%20%E6%B7%BB%E5%8A%A0%E2%80%9C%E6%89%8B%E6%B0%94%E4%B8%8D%E9%94%99%E2%80%9D%E5%8A%9F%E8%83%BD&amp;amp;iu=http://www.jeff-chen.com/add-feeling-lucky-feature-to-your-wordpress/&amp;amp;dc=&amp;amp;fr=ien#nw=1&quot; rel=&quot;nofollow&quot;&gt;百度搜藏&lt;/a&gt; | 分享: &lt;a href=&quot;http://www.xianguo.com/service/submitdigg/?link=http://www.jeff-chen.com/add-feeling-lucky-feature-to-your-wordpress/&amp;amp;title=%E4%B8%BA%20WordPress%20%E6%B7%BB%E5%8A%A0%E2%80%9C%E6%89%8B%E6%B0%94%E4%B8%8D%E9%94%99%E2%80%9D%E5%8A%9F%E8%83%BD&quot; rel=&quot;nofollow&quot;&gt;鲜果推荐&lt;/a&gt;, &lt;a href=&quot;http://v.t.sina.com.cn/share/share.php?title=%E4%B8%BA%20WordPress%20%E6%B7%BB%E5%8A%A0%E2%80%9C%E6%89%8B%E6%B0%94%E4%B8%8D%E9%94%99%E2%80%9D%E5%8A%9F%E8%83%BD%20-%20http://www.jeff-chen.com/add-feeling-lucky-feature-to-your-wordpress/&quot; rel=&quot;nofollow&quot;&gt;新浪微博&lt;/a&gt;, &lt;a href=&quot;http://v.t.qq.com/share/share.php?title=%E4%B8%BA%20WordPress%20%E6%B7%BB%E5%8A%A0%E2%80%9C%E6%89%8B%E6%B0%94%E4%B8%8D%E9%94%99%E2%80%9D%E5%8A%9F%E8%83%BD&amp;amp;url=http://www.jeff-chen.com/add-feeling-lucky-feature-to-your-wordpress/&quot; title=&quot;分享到腾讯微博&quot; rel=&quot;nofollow&quot;&gt;腾讯微博&lt;/a&gt;, &lt;a href=&quot;http://share.xiaonei.com/share/buttonshare.do?link=http://www.jeff-chen.com/add-feeling-lucky-feature-to-your-wordpress/&amp;amp;title=%E4%B8%BA%20WordPress%20%E6%B7%BB%E5%8A%A0%E2%80%9C%E6%89%8B%E6%B0%94%E4%B8%8D%E9%94%99%E2%80%9D%E5%8A%9F%E8%83%BD&quot; title=&quot;分享到人人网&quot; rel=&quot;nofollow&quot;&gt;人人网&lt;/a&gt;, &lt;a href=&quot;http://www.kaixin001.com/repaste/share.php?url=http://www.jeff-chen.com/add-feeling-lucky-feature-to-your-wordpress/&amp;amp;title=%E4%B8%BA%20WordPress%20%E6%B7%BB%E5%8A%A0%E2%80%9C%E6%89%8B%E6%B0%94%E4%B8%8D%E9%94%99%E2%80%9D%E5%8A%9F%E8%83%BD&quot; title=&quot;分享到开心网&quot; rel=&quot;nofollow&quot;&gt;开心网&lt;/a&gt;, &lt;a href=&quot;http://www.douban.com/recommend/?url=http://www.jeff-chen.com/add-feeling-lucky-feature-to-your-wordpress/&amp;amp;title=%E4%B8%BA%20WordPress%20%E6%B7%BB%E5%8A%A0%E2%80%9C%E6%89%8B%E6%B0%94%E4%B8%8D%E9%94%99%E2%80%9D%E5%8A%9F%E8%83%BD&amp;amp;sel=&amp;amp;v=1&quot; title=&quot;分享到豆瓣推荐&quot; rel=&quot;nofollow&quot;&gt;豆瓣推荐&lt;/a&gt;, &lt;a href=&quot;http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=http://www.jeff-chen.com/add-feeling-lucky-feature-to-your-wordpress/&quot; title=&quot;分享到QQ空间&quot; rel=&quot;nofollow&quot;&gt;QQ空间&lt;/a&gt;</content><author xmlns="http://www.w3.org/2005/Atom"><name>Jeff</name></author><source xmlns="http://www.w3.org/2005/Atom" gr:stream-id="feed/http://www.jeff-chen.com/feed/"><id>tag:google.com,2005:reader/feed/http://www.jeff-chen.com/feed/</id><title type="html">Jeff-Chen.Com</title><link rel="alternate" href="http://www.jeff-chen.com" type="text/html"></link></source><content:encoded>&lt;p&gt;有时你不想思考，想随意，你可以尝试点击本站的右上角“手气不错”这样的按钮，它可以随机给你推荐一篇文章。&lt;br&gt;
如果为你的博客也加上这个功能？其实很简单。在网站内加入以下代码即可。&lt;/p&gt;
&lt;p&gt;[ccIlW_php highlight=&quot;&quot;]&lt;br&gt;
&amp;lt; ?php $rand_post=get_posts(&amp;#39;numberposts=1&amp;amp;orderby=rand&amp;#39;); foreach($rand_post as $post) : ?&amp;gt;&lt;a href=&quot;javascript:void(0);&quot; title=&quot;&amp;lt; ?php the_title() ?&amp;gt;&quot;&gt;手气不错&lt;/a&gt;&amp;lt; ?php endforeach; ?&amp;gt;&lt;br&gt;
[/ccIlW_php]&lt;/p&gt;
&lt;p&gt;随机给“手气不错”加上文章链接。&lt;br&gt;
如果你不想被预先知道链接地址，实现如：http://www.***.com/random 这样的链接，可以创建一个模板文件，如random.php，将以下代码复制到此文件，然后到后台添加一个新页面，页面模板选择 random，保存后就生效了。&lt;/p&gt;
&lt;p&gt;[ccIlW_php highlight=&quot;&quot;]&lt;br&gt;
&amp;lt; ?php&lt;br&gt;
/*&lt;br&gt;
Template Name: random&lt;br&gt;
*/&lt;br&gt;
?&amp;gt;&lt;br&gt;
&amp;lt; ?php $rand_post=get_posts(&amp;#39;numberposts=1&amp;amp;orderby=rand&amp;#39;); foreach($rand_post as $post) : ?&amp;gt;&lt;br&gt;
&lt;br&gt;
&amp;lt; ?php endforeach; ?&amp;gt;&lt;br&gt;
[/ccIlW_php]&lt;/p&gt;
&lt;p&gt;当然，这样的网址形式还需要设置“固定链接”，否则网址的形式会是：http://www.***.com/?page_id=**&lt;/p&gt;
© 2004-2011 &lt;a href=&quot;http://www.jeff-chen.com&quot;&gt;Jeff-Chen.Com&lt;/a&gt; 版权所有 |
&lt;a href=&quot;http://www.jeff-chen.com/add-feeling-lucky-feature-to-your-wordpress/&quot;&gt;文章链接&lt;/a&gt; |
&lt;strong&gt;&lt;a href=&quot;http://www.jeff-chen.com/add-feeling-lucky-feature-to-your-wordpress/#respond&quot;&gt;4 条评论&lt;/a&gt;&lt;/strong&gt;
&lt;br&gt;
关键词: &lt;a href=&quot;http://www.jeff-chen.com/tag/wordpress/&quot; rel=&quot;tag&quot;&gt;WordPress&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/code/&quot; rel=&quot;tag&quot;&gt;代码&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/technology/&quot; rel=&quot;tag&quot;&gt;技术&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/tutorials/&quot; rel=&quot;tag&quot;&gt;教程&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/template/&quot; rel=&quot;tag&quot;&gt;模板&lt;/a&gt;
&lt;hr&gt;
收藏: &lt;a href=&quot;http://shuqian.qq.com/post?title=%E4%B8%BA%20WordPress%20%E6%B7%BB%E5%8A%A0%E2%80%9C%E6%89%8B%E6%B0%94%E4%B8%8D%E9%94%99%E2%80%9D%E5%8A%9F%E8%83%BD&amp;amp;uri=http://www.jeff-chen.com/add-feeling-lucky-feature-to-your-wordpress/&quot; rel=&quot;nofollow&quot;&gt;QQ书签&lt;/a&gt;, &lt;a href=&quot;http://www.google.com/bookmarks/mark?op=edit&amp;amp;bkmk=http://www.jeff-chen.com/add-feeling-lucky-feature-to-your-wordpress/&amp;amp;title=%E4%B8%BA%20WordPress%20%E6%B7%BB%E5%8A%A0%E2%80%9C%E6%89%8B%E6%B0%94%E4%B8%8D%E9%94%99%E2%80%9D%E5%8A%9F%E8%83%BD&quot; rel=&quot;nofollow&quot;&gt;Google书签&lt;/a&gt;, &lt;a href=&quot;http://cang.baidu.com/do/add?it=%E4%B8%BA%20WordPress%20%E6%B7%BB%E5%8A%A0%E2%80%9C%E6%89%8B%E6%B0%94%E4%B8%8D%E9%94%99%E2%80%9D%E5%8A%9F%E8%83%BD&amp;amp;iu=http://www.jeff-chen.com/add-feeling-lucky-feature-to-your-wordpress/&amp;amp;dc=&amp;amp;fr=ien#nw=1&quot; rel=&quot;nofollow&quot;&gt;百度搜藏&lt;/a&gt; | 分享: &lt;a href=&quot;http://www.xianguo.com/service/submitdigg/?link=http://www.jeff-chen.com/add-feeling-lucky-feature-to-your-wordpress/&amp;amp;title=%E4%B8%BA%20WordPress%20%E6%B7%BB%E5%8A%A0%E2%80%9C%E6%89%8B%E6%B0%94%E4%B8%8D%E9%94%99%E2%80%9D%E5%8A%9F%E8%83%BD&quot; rel=&quot;nofollow&quot;&gt;鲜果推荐&lt;/a&gt;, &lt;a href=&quot;http://v.t.sina.com.cn/share/share.php?title=%E4%B8%BA%20WordPress%20%E6%B7%BB%E5%8A%A0%E2%80%9C%E6%89%8B%E6%B0%94%E4%B8%8D%E9%94%99%E2%80%9D%E5%8A%9F%E8%83%BD%20-%20http://www.jeff-chen.com/add-feeling-lucky-feature-to-your-wordpress/&quot; rel=&quot;nofollow&quot;&gt;新浪微博&lt;/a&gt;, &lt;a href=&quot;http://v.t.qq.com/share/share.php?title=%E4%B8%BA%20WordPress%20%E6%B7%BB%E5%8A%A0%E2%80%9C%E6%89%8B%E6%B0%94%E4%B8%8D%E9%94%99%E2%80%9D%E5%8A%9F%E8%83%BD&amp;amp;url=http://www.jeff-chen.com/add-feeling-lucky-feature-to-your-wordpress/&quot; title=&quot;分享到腾讯微博&quot; rel=&quot;nofollow&quot;&gt;腾讯微博&lt;/a&gt;, &lt;a href=&quot;http://share.xiaonei.com/share/buttonshare.do?link=http://www.jeff-chen.com/add-feeling-lucky-feature-to-your-wordpress/&amp;amp;title=%E4%B8%BA%20WordPress%20%E6%B7%BB%E5%8A%A0%E2%80%9C%E6%89%8B%E6%B0%94%E4%B8%8D%E9%94%99%E2%80%9D%E5%8A%9F%E8%83%BD&quot; title=&quot;分享到人人网&quot; rel=&quot;nofollow&quot;&gt;人人网&lt;/a&gt;, &lt;a href=&quot;http://www.kaixin001.com/repaste/share.php?url=http://www.jeff-chen.com/add-feeling-lucky-feature-to-your-wordpress/&amp;amp;title=%E4%B8%BA%20WordPress%20%E6%B7%BB%E5%8A%A0%E2%80%9C%E6%89%8B%E6%B0%94%E4%B8%8D%E9%94%99%E2%80%9D%E5%8A%9F%E8%83%BD&quot; title=&quot;分享到开心网&quot; rel=&quot;nofollow&quot;&gt;开心网&lt;/a&gt;, &lt;a href=&quot;http://www.douban.com/recommend/?url=http://www.jeff-chen.com/add-feeling-lucky-feature-to-your-wordpress/&amp;amp;title=%E4%B8%BA%20WordPress%20%E6%B7%BB%E5%8A%A0%E2%80%9C%E6%89%8B%E6%B0%94%E4%B8%8D%E9%94%99%E2%80%9D%E5%8A%9F%E8%83%BD&amp;amp;sel=&amp;amp;v=1&quot; title=&quot;分享到豆瓣推荐&quot; rel=&quot;nofollow&quot;&gt;豆瓣推荐&lt;/a&gt;, &lt;a href=&quot;http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=http://www.jeff-chen.com/add-feeling-lucky-feature-to-your-wordpress/&quot; title=&quot;分享到QQ空间&quot; rel=&quot;nofollow&quot;&gt;QQ空间&lt;/a&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/566190763/sharer/feedsky/s.gif?r=http://www.jeff-chen.com/add-feeling-lucky-feature-to-your-wordpress/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;</content:encoded><category>文库</category><category>WordPress</category><category>代码</category><category>技术</category><category>教程</category><category>模板</category><pubDate>Tue, 27 Sep 2011 15:08:00 +0800</pubDate><guid isPermaLink="false">tag:google.com,2005:reader/item/be4cc174280aa9f8</guid><dc:creator>Jeff</dc:creator><fs:srclink>http://www.jeff-chen.com/add-feeling-lucky-feature-to-your-wordpress/</fs:srclink><fs:srcfeed>http://www.google.com/reader/public/atom/user%2F04568479978967443037%2Flabel%2FSharer</fs:srcfeed><fs:itemid>feedsky/sharer/~8223687/566190763/6299489</fs:itemid></item><item><title>统计指标和术语汇总</title><link atom:type="text/html">http://www.jeff-chen.com/summary-of-statistical-indicators-and-terminology/</link><id xmlns="http://www.w3.org/2005/Atom" gr:original-id="http://www.jeff-chen.com/?p=1765">tag:google.com,2005:reader/item/9c3b06b027597913</id><content xmlns="http://www.w3.org/2005/Atom" xml:base="http://www.jeff-chen.com/" type="html">&lt;p&gt;&lt;strong&gt;页面浏览量&lt;/strong&gt; PV(page view)，即页面浏览数，或点击量，通常是衡量一个频道或网站甚至一个网页的主要指标。 用户刷新页面不记录到页面浏览量中。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;独立访客数&lt;/strong&gt; UV(unique visitor)：独立访客，将每台独立上网电脑（以cookie为依据）视为一位访客，一天之内（00:00-24:00），访问您网站的访客数量。一天之内相同cookie的访问只被计算1次。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;平均访问页数&lt;/strong&gt; 这是一个平均数，即在一定时间内全部页面浏览量与所有独立访客数相除的结果，即一个用户浏览的网页数量。这一指标表明了访问者对网站内容或者产品信息感兴趣的程度，也就是常说的网站“粘性”。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;访问次数&lt;/strong&gt; 也称为登陆数，一个登陆是指客户开始访问网站到离开网站的过程。其中：相邻两次点击页面时间间隔在30分钟以内为一次登陆，大于30分钟为两次登陆。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;平均网站访问时间&lt;/strong&gt; 同一个访问过程中最后一个页面的访问时间减去第一个页面的访问时间，得到此访问在网站上的停留时间。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;页面停留时间&lt;/strong&gt; 显示访问者在某个特定页面或某组页面上花费的时间。∑（时间戳（N+1）-时间戳(N)）/(页面访问量-退出数)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;新访客数&lt;/strong&gt; 独立访客中，历史首次访问您网站的访客数。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;重复访客者数&lt;/strong&gt; 重复访问者。是指在一定时期内（两年）不止一次访问一个网站的独立用户。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;新访客率&lt;/strong&gt; 某段时间内某个页面或多个页面新访客数占所有唯一身份访问者的比例。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;回访率&lt;/strong&gt; 重复访客占所有唯一身份访问者的比例。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;独立IP数&lt;/strong&gt; 指访问某个站点或点击某个页面的不同IP地址的人数。 在同一天内，只记录第一次进入网站的具有独立IP的访问者，在同一天内再次访问该网站则不计数。独立IP访问者提供了一定时间内不同观众数量的统计指标，而没有反应出网站的全面活动。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;访问频度&lt;/strong&gt; 是指您网站上访问者每日访问的频度，用于揭示您网站内容对访问者的吸引程度。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;跳出率&lt;/strong&gt; 某个时间段内，只浏览了一页即离开网站的访问次数占总访问次数的比例。对于某页面的跳出率算法：从这个页面进入网站没有再点击其他页即离开的次数/所有进入这个页面的次数对于整个网站跳出率的算法：只浏览一个页面即离开的访问次数/进入网站的总次数&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;退出率&lt;/strong&gt; 某个时间段内，离开网页的次数占该网页总浏览次数的比例。从本页退出网站的次数/本页的综合浏览量。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;页面打开时间&lt;/strong&gt; 页面顶部JS代码与页面底部JS代码执行时间的差值。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;唯一身份浏览量&lt;/strong&gt; 唯一浏览量（如最常见内容报告中所示）会汇总由同一用户在同一会话期间生成的综合浏览量。唯一浏览量表示该页被浏览（一次或多次）期间的会话次数。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;页面价值&lt;/strong&gt; 页面价值是指用户在到达目标页面或完成电子商务交易（或两者都有）前访问页面的平均价值。其计算公式如下：页面价值 =（总目标价值+电子商务收入）/指定页面的唯一身份浏览量&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;投放词ROI&lt;/strong&gt; 订单佣金/点击单价*点击量&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;登陆页面&lt;/strong&gt; 即访问入口：每次访问过程中，用户进入的第一个页面，此页面可以显示网站对外或搜索引擎的一些链接入口。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;访问路径&lt;/strong&gt; 每个访问者从进入您的网站开始访问，一直到最后离开您的网站，整个过程中先后浏览的页面称为访问路径。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;离开页面&lt;/strong&gt; 是指某个访客本次访问您网站时所访问的最后一个页面。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;目标完成数&lt;/strong&gt; 到达目标页面的会话数目。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;目标转化率&lt;/strong&gt; 目标完成的会话占总会话的比例。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;路径进入数&lt;/strong&gt; 进入用户预定义的浏览路径的会话数。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;路径完成数&lt;/strong&gt; 完成预定义的浏览路径的会话数。即设置的浏览路径每个步骤（页面）都覆盖到的会话的数目。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;路径转化率&lt;/strong&gt; 完成浏览路径的会话占进入浏览路径的会话的比例。如100个人（准确的说应该是100个会话，这里假设每个人只访问了一次会话）开始了注册流程，但是最终只有20个人注册成功了（到达注册成功页面），则转化率为20%。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;搜索深度&lt;/strong&gt; 同一用户一次会话的搜索次数。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;搜索次数&lt;/strong&gt; 用户使用搜索功能的次数&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;搜索退出率&lt;/strong&gt; 搜索后退出数站总搜索者的比例。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;网站&lt;/strong&gt; 主要单个域名或多个域名的站点集合。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;频道&lt;/strong&gt;&lt;strong&gt;/&lt;/strong&gt;&lt;strong&gt;栏目&lt;/strong&gt; 将网站中的各种内容根据功能归类，划分出若干逻辑上的频道或栏目。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;过滤页面&lt;/strong&gt; 网站中的某些页面并不是独立的页面，而是附属于某个页面，如滚动条页面就是附属于首页的页面，用户可以将这些附属页面设置为过滤页面。过滤后的浏览数方能真正反映网站的访问情况。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;特定页面&lt;/strong&gt; 对于需要特殊分析的页面，通过设置，从众多页面中独立出来，进行特定分析的页面。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;定义页面&lt;/strong&gt; 页面功能没有定义的页面，即没有归类到任何频道的页面。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;热门&lt;/strong&gt; 最受欢迎的页面或频道，即浏览数排名前若干位（可由用户自行定义）的页面或频道。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;冷门&lt;/strong&gt; 最不受欢迎的页面或频道，即浏览数排名后若干位（可由用户自行定义）的页面或频道。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;热点&lt;/strong&gt; 将一个网页中包含的各个链接根据功能归类划分出若干板块，比如机票板块、酒店板块、广告板块等，每个板块成为一个热点。进而分析出该页面上的各个热点板块被点击的情况。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;沉默时间&lt;/strong&gt; 注册用户最后一次访问网站到分析日的天数。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;沉默用户&lt;/strong&gt; 在沉默时间内未访问网站的注册用户。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;重度访问用户&lt;/strong&gt; 按每次访问的停留时间划分，把停留时间超过20分钟的用户归为重度访问用户；按每次访问产生的浏览数划分，把一次访问浏览超过10个页面的用户归为重度访问用户。对于重度访问用户，包括以下四个指标，每个指标值越大，表明用户品质越高。&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;重度用户比例（次数）=（浏览数≥11页面的访问数）/ 总访问数&lt;/li&gt;
&lt;li&gt; 重度用户比例（时长）=（&amp;gt;20分钟的访问数）/ 总访问数&lt;/li&gt;
&lt;li&gt; 重度用户指数=（&amp;gt;20分钟的浏览数）/（&amp;gt;20分钟的访问数）&lt;/li&gt;
&lt;li&gt; 重度访问量比列=（&amp;gt;20分钟的浏览数）/ 总浏览数&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;轻度访问用户&lt;/strong&gt; 按每次访问的停留时间划分，把停留时间不超过1分钟的用户归为轻度访问用户。对于轻度访问用户，包括以下三个指标，每个指标值越小，表明用户品质越高。&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;轻度用户比例=（0-1分钟的访问数）/ 总访问数&lt;/li&gt;
&lt;li&gt; 轻度用户指数=（0-1分钟的浏览数）/（0-1分钟的访问数）&lt;/li&gt;
&lt;li&gt; 轻度访问量比例=（0-1分钟的浏览数）/ 总浏览&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;拒绝率&lt;/strong&gt; 一次访问只访问一个页面的访问次数占总访问数的比例，比例越小，表明用户品质越高。&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;拒绝率（一个页面）= 只访问1个页面的访问数 / 总访问数&lt;/li&gt;
&lt;li&gt; 拒绝率（首页）= 只访问首页的访问数 / 总访问数&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;访客&lt;/strong&gt; 所有访问网站的用户。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;会员&lt;/strong&gt; 所有注册过的访客。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&lt;strong&gt;客户&lt;/strong&gt; 所有消费过的会员。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;时段&lt;/strong&gt; 按照一天24个小时自然时间段进行划分。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;地区&lt;/strong&gt; 访问客户的来源地区，是根据IP地区对照表，查询访问客户的IP地址落在哪个IP区段内，而得到其对应的地区。地区包括国内地区和国外地区，国内地区以省为单位，国外地区以国家为单位。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;IP&lt;/strong&gt;&lt;strong&gt;地址&lt;/strong&gt; IP地址由4个数组成，每个数可取值0～255， 各数之间用一个点号”.”分开，例如： 202.103.8.46。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;运营商&lt;/strong&gt; 客户端接入互联网的服务提供商，比如中国电信、中国网通、教育网等。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;接入方式&lt;/strong&gt; 客户端接入互联网的方式，比如拨号、专线、ISDN、ADSL等。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;广告&lt;/strong&gt; 通过在别的网站上放置网站链接或弹出窗口等方式介绍本网站的一种商业活动。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;邮件&lt;/strong&gt; 通过发送电子邮件，邮件中包含链接地址，吸引用户通过点击邮件中包含的链接地址访问本网站，实际上也是广告的一种。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;搜索引擎&lt;/strong&gt; 在互联网上为您提供信息”检索”服务的网站。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;关键字&lt;/strong&gt; 用户通过搜索引擎“检索”的内容。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;投放词&lt;/strong&gt; 在百度竞价系统后台设置的关键词。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;曝光数&lt;/strong&gt; 广告的展示次数。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;广告点击数&lt;/strong&gt; 用户点击弹出广告的次数，即Click数。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;趋势&lt;/strong&gt; 趋势分为两种，第一种是以时段为单位的一天24小时发展趋势。第二种是以日为单位的周、月、以及指定区间发展趋势。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;汇总&lt;/strong&gt; 对多网站的分析进行汇总。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;同期比较&lt;/strong&gt; 对任意两个日、周、月、以及指定区间的浏览数（或访问数、或用户数、停留时间）进行比较。比较对象可以是页面、频道、栏目、广告、地区等。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;聚合&lt;/strong&gt; 对日期的聚合，比如周聚合就是将7天的数据合在一起为一个分析项，聚合目的就是以聚合项为单位分析网站发展的趋势。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;环比&lt;/strong&gt; 在趋势分析中，当前日期数据与上一日期数据的比成为环比。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Excel&lt;/strong&gt;&lt;strong&gt;导出&lt;/strong&gt; 将分析结果以Excel表格形式输出。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;网站拓扑结构&lt;/strong&gt; 网站的拓扑结构是由网站汇总、网站分析和频道分析三类节点构成。其中，网站汇总下可以有部门汇总，网站分析下可以有子网站，频道分析下可以有子频道。用户根据网站拓扑结构，来查询所需要的分析结果。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;日志文件&lt;/strong&gt; 日志文件是指被分析网站的工作日志。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;状态代码&lt;/strong&gt; 也称作错误代码，是为服务器所接收每个请求（网页点击）分配的 3 位数代码。&lt;/p&gt;
© 2004-2011 &lt;a href=&quot;http://www.jeff-chen.com&quot;&gt;Jeff-Chen.Com&lt;/a&gt; 版权所有 |
&lt;a href=&quot;http://www.jeff-chen.com/summary-of-statistical-indicators-and-terminology/&quot;&gt;文章链接&lt;/a&gt; |
&lt;strong&gt;&lt;a href=&quot;http://www.jeff-chen.com/summary-of-statistical-indicators-and-terminology/#respond&quot;&gt;发表评论&lt;/a&gt;&lt;/strong&gt;
&lt;br&gt;
关键词: &lt;a href=&quot;http://www.jeff-chen.com/tag/technology/&quot; rel=&quot;tag&quot;&gt;技术&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/website/&quot; rel=&quot;tag&quot;&gt;网站&lt;/a&gt;
&lt;hr&gt;
收藏: &lt;a href=&quot;http://shuqian.qq.com/post?title=%E7%BB%9F%E8%AE%A1%E6%8C%87%E6%A0%87%E5%92%8C%E6%9C%AF%E8%AF%AD%E6%B1%87%E6%80%BB&amp;amp;uri=http://www.jeff-chen.com/summary-of-statistical-indicators-and-terminology/&quot; rel=&quot;nofollow&quot;&gt;QQ书签&lt;/a&gt;, &lt;a href=&quot;http://www.google.com/bookmarks/mark?op=edit&amp;amp;bkmk=http://www.jeff-chen.com/summary-of-statistical-indicators-and-terminology/&amp;amp;title=%E7%BB%9F%E8%AE%A1%E6%8C%87%E6%A0%87%E5%92%8C%E6%9C%AF%E8%AF%AD%E6%B1%87%E6%80%BB&quot; rel=&quot;nofollow&quot;&gt;Google书签&lt;/a&gt;, &lt;a href=&quot;http://cang.baidu.com/do/add?it=%E7%BB%9F%E8%AE%A1%E6%8C%87%E6%A0%87%E5%92%8C%E6%9C%AF%E8%AF%AD%E6%B1%87%E6%80%BB&amp;amp;iu=http://www.jeff-chen.com/summary-of-statistical-indicators-and-terminology/&amp;amp;dc=&amp;amp;fr=ien#nw=1&quot; rel=&quot;nofollow&quot;&gt;百度搜藏&lt;/a&gt; | 分享: &lt;a href=&quot;http://www.xianguo.com/service/submitdigg/?link=http://www.jeff-chen.com/summary-of-statistical-indicators-and-terminology/&amp;amp;title=%E7%BB%9F%E8%AE%A1%E6%8C%87%E6%A0%87%E5%92%8C%E6%9C%AF%E8%AF%AD%E6%B1%87%E6%80%BB&quot; rel=&quot;nofollow&quot;&gt;鲜果推荐&lt;/a&gt;, &lt;a href=&quot;http://v.t.sina.com.cn/share/share.php?title=%E7%BB%9F%E8%AE%A1%E6%8C%87%E6%A0%87%E5%92%8C%E6%9C%AF%E8%AF%AD%E6%B1%87%E6%80%BB%20-%20http://www.jeff-chen.com/summary-of-statistical-indicators-and-terminology/&quot; rel=&quot;nofollow&quot;&gt;新浪微博&lt;/a&gt;, &lt;a href=&quot;http://v.t.qq.com/share/share.php?title=%E7%BB%9F%E8%AE%A1%E6%8C%87%E6%A0%87%E5%92%8C%E6%9C%AF%E8%AF%AD%E6%B1%87%E6%80%BB&amp;amp;url=http://www.jeff-chen.com/summary-of-statistical-indicators-and-terminology/&quot; title=&quot;分享到腾讯微博&quot; rel=&quot;nofollow&quot;&gt;腾讯微博&lt;/a&gt;, &lt;a href=&quot;http://share.xiaonei.com/share/buttonshare.do?link=http://www.jeff-chen.com/summary-of-statistical-indicators-and-terminology/&amp;amp;title=%E7%BB%9F%E8%AE%A1%E6%8C%87%E6%A0%87%E5%92%8C%E6%9C%AF%E8%AF%AD%E6%B1%87%E6%80%BB&quot; title=&quot;分享到人人网&quot; rel=&quot;nofollow&quot;&gt;人人网&lt;/a&gt;, &lt;a href=&quot;http://www.kaixin001.com/repaste/share.php?url=http://www.jeff-chen.com/summary-of-statistical-indicators-and-terminology/&amp;amp;title=%E7%BB%9F%E8%AE%A1%E6%8C%87%E6%A0%87%E5%92%8C%E6%9C%AF%E8%AF%AD%E6%B1%87%E6%80%BB&quot; title=&quot;分享到开心网&quot; rel=&quot;nofollow&quot;&gt;开心网&lt;/a&gt;, &lt;a href=&quot;http://www.douban.com/recommend/?url=http://www.jeff-chen.com/summary-of-statistical-indicators-and-terminology/&amp;amp;title=%E7%BB%9F%E8%AE%A1%E6%8C%87%E6%A0%87%E5%92%8C%E6%9C%AF%E8%AF%AD%E6%B1%87%E6%80%BB&amp;amp;sel=&amp;amp;v=1&quot; title=&quot;分享到豆瓣推荐&quot; rel=&quot;nofollow&quot;&gt;豆瓣推荐&lt;/a&gt;, &lt;a href=&quot;http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=http://www.jeff-chen.com/summary-of-statistical-indicators-and-terminology/&quot; title=&quot;分享到QQ空间&quot; rel=&quot;nofollow&quot;&gt;QQ空间&lt;/a&gt;</content><author xmlns="http://www.w3.org/2005/Atom"><name>Jeff</name></author><source xmlns="http://www.w3.org/2005/Atom" gr:stream-id="feed/http://www.jeff-chen.com/feed/"><id>tag:google.com,2005:reader/feed/http://www.jeff-chen.com/feed/</id><title type="html">Jeff-Chen.Com</title><link rel="alternate" href="http://www.jeff-chen.com" type="text/html"></link></source><content:encoded>&lt;p&gt;&lt;strong&gt;页面浏览量&lt;/strong&gt; PV(page view)，即页面浏览数，或点击量，通常是衡量一个频道或网站甚至一个网页的主要指标。 用户刷新页面不记录到页面浏览量中。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;独立访客数&lt;/strong&gt; UV(unique visitor)：独立访客，将每台独立上网电脑（以cookie为依据）视为一位访客，一天之内（00:00-24:00），访问您网站的访客数量。一天之内相同cookie的访问只被计算1次。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;平均访问页数&lt;/strong&gt; 这是一个平均数，即在一定时间内全部页面浏览量与所有独立访客数相除的结果，即一个用户浏览的网页数量。这一指标表明了访问者对网站内容或者产品信息感兴趣的程度，也就是常说的网站“粘性”。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;访问次数&lt;/strong&gt; 也称为登陆数，一个登陆是指客户开始访问网站到离开网站的过程。其中：相邻两次点击页面时间间隔在30分钟以内为一次登陆，大于30分钟为两次登陆。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;平均网站访问时间&lt;/strong&gt; 同一个访问过程中最后一个页面的访问时间减去第一个页面的访问时间，得到此访问在网站上的停留时间。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;页面停留时间&lt;/strong&gt; 显示访问者在某个特定页面或某组页面上花费的时间。∑（时间戳（N+1）-时间戳(N)）/(页面访问量-退出数)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;新访客数&lt;/strong&gt; 独立访客中，历史首次访问您网站的访客数。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;重复访客者数&lt;/strong&gt; 重复访问者。是指在一定时期内（两年）不止一次访问一个网站的独立用户。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;新访客率&lt;/strong&gt; 某段时间内某个页面或多个页面新访客数占所有唯一身份访问者的比例。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;回访率&lt;/strong&gt; 重复访客占所有唯一身份访问者的比例。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;独立IP数&lt;/strong&gt; 指访问某个站点或点击某个页面的不同IP地址的人数。 在同一天内，只记录第一次进入网站的具有独立IP的访问者，在同一天内再次访问该网站则不计数。独立IP访问者提供了一定时间内不同观众数量的统计指标，而没有反应出网站的全面活动。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;访问频度&lt;/strong&gt; 是指您网站上访问者每日访问的频度，用于揭示您网站内容对访问者的吸引程度。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;跳出率&lt;/strong&gt; 某个时间段内，只浏览了一页即离开网站的访问次数占总访问次数的比例。对于某页面的跳出率算法：从这个页面进入网站没有再点击其他页即离开的次数/所有进入这个页面的次数对于整个网站跳出率的算法：只浏览一个页面即离开的访问次数/进入网站的总次数&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;退出率&lt;/strong&gt; 某个时间段内，离开网页的次数占该网页总浏览次数的比例。从本页退出网站的次数/本页的综合浏览量。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;页面打开时间&lt;/strong&gt; 页面顶部JS代码与页面底部JS代码执行时间的差值。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;唯一身份浏览量&lt;/strong&gt; 唯一浏览量（如最常见内容报告中所示）会汇总由同一用户在同一会话期间生成的综合浏览量。唯一浏览量表示该页被浏览（一次或多次）期间的会话次数。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;页面价值&lt;/strong&gt; 页面价值是指用户在到达目标页面或完成电子商务交易（或两者都有）前访问页面的平均价值。其计算公式如下：页面价值 =（总目标价值+电子商务收入）/指定页面的唯一身份浏览量&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;投放词ROI&lt;/strong&gt; 订单佣金/点击单价*点击量&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;登陆页面&lt;/strong&gt; 即访问入口：每次访问过程中，用户进入的第一个页面，此页面可以显示网站对外或搜索引擎的一些链接入口。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;访问路径&lt;/strong&gt; 每个访问者从进入您的网站开始访问，一直到最后离开您的网站，整个过程中先后浏览的页面称为访问路径。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;离开页面&lt;/strong&gt; 是指某个访客本次访问您网站时所访问的最后一个页面。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;目标完成数&lt;/strong&gt; 到达目标页面的会话数目。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;目标转化率&lt;/strong&gt; 目标完成的会话占总会话的比例。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;路径进入数&lt;/strong&gt; 进入用户预定义的浏览路径的会话数。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;路径完成数&lt;/strong&gt; 完成预定义的浏览路径的会话数。即设置的浏览路径每个步骤（页面）都覆盖到的会话的数目。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;路径转化率&lt;/strong&gt; 完成浏览路径的会话占进入浏览路径的会话的比例。如100个人（准确的说应该是100个会话，这里假设每个人只访问了一次会话）开始了注册流程，但是最终只有20个人注册成功了（到达注册成功页面），则转化率为20%。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;搜索深度&lt;/strong&gt; 同一用户一次会话的搜索次数。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;搜索次数&lt;/strong&gt; 用户使用搜索功能的次数&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;搜索退出率&lt;/strong&gt; 搜索后退出数站总搜索者的比例。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;网站&lt;/strong&gt; 主要单个域名或多个域名的站点集合。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;频道&lt;/strong&gt;&lt;strong&gt;/&lt;/strong&gt;&lt;strong&gt;栏目&lt;/strong&gt; 将网站中的各种内容根据功能归类，划分出若干逻辑上的频道或栏目。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;过滤页面&lt;/strong&gt; 网站中的某些页面并不是独立的页面，而是附属于某个页面，如滚动条页面就是附属于首页的页面，用户可以将这些附属页面设置为过滤页面。过滤后的浏览数方能真正反映网站的访问情况。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;特定页面&lt;/strong&gt; 对于需要特殊分析的页面，通过设置，从众多页面中独立出来，进行特定分析的页面。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;定义页面&lt;/strong&gt; 页面功能没有定义的页面，即没有归类到任何频道的页面。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;热门&lt;/strong&gt; 最受欢迎的页面或频道，即浏览数排名前若干位（可由用户自行定义）的页面或频道。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;冷门&lt;/strong&gt; 最不受欢迎的页面或频道，即浏览数排名后若干位（可由用户自行定义）的页面或频道。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;热点&lt;/strong&gt; 将一个网页中包含的各个链接根据功能归类划分出若干板块，比如机票板块、酒店板块、广告板块等，每个板块成为一个热点。进而分析出该页面上的各个热点板块被点击的情况。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;沉默时间&lt;/strong&gt; 注册用户最后一次访问网站到分析日的天数。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;沉默用户&lt;/strong&gt; 在沉默时间内未访问网站的注册用户。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;重度访问用户&lt;/strong&gt; 按每次访问的停留时间划分，把停留时间超过20分钟的用户归为重度访问用户；按每次访问产生的浏览数划分，把一次访问浏览超过10个页面的用户归为重度访问用户。对于重度访问用户，包括以下四个指标，每个指标值越大，表明用户品质越高。&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;重度用户比例（次数）=（浏览数≥11页面的访问数）/ 总访问数&lt;/li&gt;
&lt;li&gt; 重度用户比例（时长）=（&amp;gt;20分钟的访问数）/ 总访问数&lt;/li&gt;
&lt;li&gt; 重度用户指数=（&amp;gt;20分钟的浏览数）/（&amp;gt;20分钟的访问数）&lt;/li&gt;
&lt;li&gt; 重度访问量比列=（&amp;gt;20分钟的浏览数）/ 总浏览数&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;轻度访问用户&lt;/strong&gt; 按每次访问的停留时间划分，把停留时间不超过1分钟的用户归为轻度访问用户。对于轻度访问用户，包括以下三个指标，每个指标值越小，表明用户品质越高。&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;轻度用户比例=（0-1分钟的访问数）/ 总访问数&lt;/li&gt;
&lt;li&gt; 轻度用户指数=（0-1分钟的浏览数）/（0-1分钟的访问数）&lt;/li&gt;
&lt;li&gt; 轻度访问量比例=（0-1分钟的浏览数）/ 总浏览&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;拒绝率&lt;/strong&gt; 一次访问只访问一个页面的访问次数占总访问数的比例，比例越小，表明用户品质越高。&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;拒绝率（一个页面）= 只访问1个页面的访问数 / 总访问数&lt;/li&gt;
&lt;li&gt; 拒绝率（首页）= 只访问首页的访问数 / 总访问数&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;访客&lt;/strong&gt; 所有访问网站的用户。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;会员&lt;/strong&gt; 所有注册过的访客。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&lt;strong&gt;客户&lt;/strong&gt; 所有消费过的会员。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;时段&lt;/strong&gt; 按照一天24个小时自然时间段进行划分。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;地区&lt;/strong&gt; 访问客户的来源地区，是根据IP地区对照表，查询访问客户的IP地址落在哪个IP区段内，而得到其对应的地区。地区包括国内地区和国外地区，国内地区以省为单位，国外地区以国家为单位。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;IP&lt;/strong&gt;&lt;strong&gt;地址&lt;/strong&gt; IP地址由4个数组成，每个数可取值0～255， 各数之间用一个点号”.”分开，例如： 202.103.8.46。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;运营商&lt;/strong&gt; 客户端接入互联网的服务提供商，比如中国电信、中国网通、教育网等。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;接入方式&lt;/strong&gt; 客户端接入互联网的方式，比如拨号、专线、ISDN、ADSL等。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;广告&lt;/strong&gt; 通过在别的网站上放置网站链接或弹出窗口等方式介绍本网站的一种商业活动。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;邮件&lt;/strong&gt; 通过发送电子邮件，邮件中包含链接地址，吸引用户通过点击邮件中包含的链接地址访问本网站，实际上也是广告的一种。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;搜索引擎&lt;/strong&gt; 在互联网上为您提供信息”检索”服务的网站。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;关键字&lt;/strong&gt; 用户通过搜索引擎“检索”的内容。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;投放词&lt;/strong&gt; 在百度竞价系统后台设置的关键词。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;曝光数&lt;/strong&gt; 广告的展示次数。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;广告点击数&lt;/strong&gt; 用户点击弹出广告的次数，即Click数。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;趋势&lt;/strong&gt; 趋势分为两种，第一种是以时段为单位的一天24小时发展趋势。第二种是以日为单位的周、月、以及指定区间发展趋势。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;汇总&lt;/strong&gt; 对多网站的分析进行汇总。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;同期比较&lt;/strong&gt; 对任意两个日、周、月、以及指定区间的浏览数（或访问数、或用户数、停留时间）进行比较。比较对象可以是页面、频道、栏目、广告、地区等。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;聚合&lt;/strong&gt; 对日期的聚合，比如周聚合就是将7天的数据合在一起为一个分析项，聚合目的就是以聚合项为单位分析网站发展的趋势。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;环比&lt;/strong&gt; 在趋势分析中，当前日期数据与上一日期数据的比成为环比。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Excel&lt;/strong&gt;&lt;strong&gt;导出&lt;/strong&gt; 将分析结果以Excel表格形式输出。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;网站拓扑结构&lt;/strong&gt; 网站的拓扑结构是由网站汇总、网站分析和频道分析三类节点构成。其中，网站汇总下可以有部门汇总，网站分析下可以有子网站，频道分析下可以有子频道。用户根据网站拓扑结构，来查询所需要的分析结果。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;日志文件&lt;/strong&gt; 日志文件是指被分析网站的工作日志。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;状态代码&lt;/strong&gt; 也称作错误代码，是为服务器所接收每个请求（网页点击）分配的 3 位数代码。&lt;/p&gt;
© 2004-2011 &lt;a href=&quot;http://www.jeff-chen.com&quot;&gt;Jeff-Chen.Com&lt;/a&gt; 版权所有 |
&lt;a href=&quot;http://www.jeff-chen.com/summary-of-statistical-indicators-and-terminology/&quot;&gt;文章链接&lt;/a&gt; |
&lt;strong&gt;&lt;a href=&quot;http://www.jeff-chen.com/summary-of-statistical-indicators-and-terminology/#respond&quot;&gt;发表评论&lt;/a&gt;&lt;/strong&gt;
&lt;br&gt;
关键词: &lt;a href=&quot;http://www.jeff-chen.com/tag/technology/&quot; rel=&quot;tag&quot;&gt;技术&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/website/&quot; rel=&quot;tag&quot;&gt;网站&lt;/a&gt;
&lt;hr&gt;
收藏: &lt;a href=&quot;http://shuqian.qq.com/post?title=%E7%BB%9F%E8%AE%A1%E6%8C%87%E6%A0%87%E5%92%8C%E6%9C%AF%E8%AF%AD%E6%B1%87%E6%80%BB&amp;amp;uri=http://www.jeff-chen.com/summary-of-statistical-indicators-and-terminology/&quot; rel=&quot;nofollow&quot;&gt;QQ书签&lt;/a&gt;, &lt;a href=&quot;http://www.google.com/bookmarks/mark?op=edit&amp;amp;bkmk=http://www.jeff-chen.com/summary-of-statistical-indicators-and-terminology/&amp;amp;title=%E7%BB%9F%E8%AE%A1%E6%8C%87%E6%A0%87%E5%92%8C%E6%9C%AF%E8%AF%AD%E6%B1%87%E6%80%BB&quot; rel=&quot;nofollow&quot;&gt;Google书签&lt;/a&gt;, &lt;a href=&quot;http://cang.baidu.com/do/add?it=%E7%BB%9F%E8%AE%A1%E6%8C%87%E6%A0%87%E5%92%8C%E6%9C%AF%E8%AF%AD%E6%B1%87%E6%80%BB&amp;amp;iu=http://www.jeff-chen.com/summary-of-statistical-indicators-and-terminology/&amp;amp;dc=&amp;amp;fr=ien#nw=1&quot; rel=&quot;nofollow&quot;&gt;百度搜藏&lt;/a&gt; | 分享: &lt;a href=&quot;http://www.xianguo.com/service/submitdigg/?link=http://www.jeff-chen.com/summary-of-statistical-indicators-and-terminology/&amp;amp;title=%E7%BB%9F%E8%AE%A1%E6%8C%87%E6%A0%87%E5%92%8C%E6%9C%AF%E8%AF%AD%E6%B1%87%E6%80%BB&quot; rel=&quot;nofollow&quot;&gt;鲜果推荐&lt;/a&gt;, &lt;a href=&quot;http://v.t.sina.com.cn/share/share.php?title=%E7%BB%9F%E8%AE%A1%E6%8C%87%E6%A0%87%E5%92%8C%E6%9C%AF%E8%AF%AD%E6%B1%87%E6%80%BB%20-%20http://www.jeff-chen.com/summary-of-statistical-indicators-and-terminology/&quot; rel=&quot;nofollow&quot;&gt;新浪微博&lt;/a&gt;, &lt;a href=&quot;http://v.t.qq.com/share/share.php?title=%E7%BB%9F%E8%AE%A1%E6%8C%87%E6%A0%87%E5%92%8C%E6%9C%AF%E8%AF%AD%E6%B1%87%E6%80%BB&amp;amp;url=http://www.jeff-chen.com/summary-of-statistical-indicators-and-terminology/&quot; title=&quot;分享到腾讯微博&quot; rel=&quot;nofollow&quot;&gt;腾讯微博&lt;/a&gt;, &lt;a href=&quot;http://share.xiaonei.com/share/buttonshare.do?link=http://www.jeff-chen.com/summary-of-statistical-indicators-and-terminology/&amp;amp;title=%E7%BB%9F%E8%AE%A1%E6%8C%87%E6%A0%87%E5%92%8C%E6%9C%AF%E8%AF%AD%E6%B1%87%E6%80%BB&quot; title=&quot;分享到人人网&quot; rel=&quot;nofollow&quot;&gt;人人网&lt;/a&gt;, &lt;a href=&quot;http://www.kaixin001.com/repaste/share.php?url=http://www.jeff-chen.com/summary-of-statistical-indicators-and-terminology/&amp;amp;title=%E7%BB%9F%E8%AE%A1%E6%8C%87%E6%A0%87%E5%92%8C%E6%9C%AF%E8%AF%AD%E6%B1%87%E6%80%BB&quot; title=&quot;分享到开心网&quot; rel=&quot;nofollow&quot;&gt;开心网&lt;/a&gt;, &lt;a href=&quot;http://www.douban.com/recommend/?url=http://www.jeff-chen.com/summary-of-statistical-indicators-and-terminology/&amp;amp;title=%E7%BB%9F%E8%AE%A1%E6%8C%87%E6%A0%87%E5%92%8C%E6%9C%AF%E8%AF%AD%E6%B1%87%E6%80%BB&amp;amp;sel=&amp;amp;v=1&quot; title=&quot;分享到豆瓣推荐&quot; rel=&quot;nofollow&quot;&gt;豆瓣推荐&lt;/a&gt;, &lt;a href=&quot;http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=http://www.jeff-chen.com/summary-of-statistical-indicators-and-terminology/&quot; title=&quot;分享到QQ空间&quot; rel=&quot;nofollow&quot;&gt;QQ空间&lt;/a&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/566190764/sharer/feedsky/s.gif?r=http://www.jeff-chen.com/summary-of-statistical-indicators-and-terminology/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;</content:encoded><category>文库</category><category>技术</category><category>网站</category><pubDate>Thu, 22 Sep 2011 09:56:24 +0800</pubDate><guid isPermaLink="false">tag:google.com,2005:reader/item/9c3b06b027597913</guid><dc:creator>Jeff</dc:creator><fs:srclink>http://www.jeff-chen.com/summary-of-statistical-indicators-and-terminology/</fs:srclink><fs:srcfeed>http://www.google.com/reader/public/atom/user%2F04568479978967443037%2Flabel%2FSharer</fs:srcfeed><fs:itemid>feedsky/sharer/~8223687/566190764/6299489</fs:itemid></item><item><title>青春余额</title><link atom:type="text/html">http://www.jeff-chen.com/youthful-balance/</link><id xmlns="http://www.w3.org/2005/Atom" gr:original-id="http://www.jeff-chen.com/?p=1764">tag:google.com,2005:reader/item/b9f701fa641fc6d8</id><content xmlns="http://www.w3.org/2005/Atom" xml:base="http://www.jeff-chen.com/" type="html">&lt;p&gt;今天收到一条广告短信：您好，您的青春余额已不多，请尽快充值。&lt;/p&gt;
&lt;p&gt;如果可以，不贪心，我想充值20年。&lt;/p&gt;
© 2004-2011 &lt;a href=&quot;http://www.jeff-chen.com&quot;&gt;Jeff-Chen.Com&lt;/a&gt; 版权所有 |
&lt;a href=&quot;http://www.jeff-chen.com/youthful-balance/&quot;&gt;文章链接&lt;/a&gt; |
&lt;strong&gt;&lt;a href=&quot;http://www.jeff-chen.com/youthful-balance/#respond&quot;&gt;4 条评论&lt;/a&gt;&lt;/strong&gt;
&lt;br&gt;
关键词: &lt;a href=&quot;http://www.jeff-chen.com/tag/micobog/&quot; rel=&quot;tag&quot;&gt;微博&lt;/a&gt;
&lt;hr&gt;
收藏: &lt;a href=&quot;http://shuqian.qq.com/post?title=%E9%9D%92%E6%98%A5%E4%BD%99%E9%A2%9D&amp;amp;uri=http://www.jeff-chen.com/youthful-balance/&quot; rel=&quot;nofollow&quot;&gt;QQ书签&lt;/a&gt;, &lt;a href=&quot;http://www.google.com/bookmarks/mark?op=edit&amp;amp;bkmk=http://www.jeff-chen.com/youthful-balance/&amp;amp;title=%E9%9D%92%E6%98%A5%E4%BD%99%E9%A2%9D&quot; rel=&quot;nofollow&quot;&gt;Google书签&lt;/a&gt;, &lt;a href=&quot;http://cang.baidu.com/do/add?it=%E9%9D%92%E6%98%A5%E4%BD%99%E9%A2%9D&amp;amp;iu=http://www.jeff-chen.com/youthful-balance/&amp;amp;dc=&amp;amp;fr=ien#nw=1&quot; rel=&quot;nofollow&quot;&gt;百度搜藏&lt;/a&gt; | 分享: &lt;a href=&quot;http://www.xianguo.com/service/submitdigg/?link=http://www.jeff-chen.com/youthful-balance/&amp;amp;title=%E9%9D%92%E6%98%A5%E4%BD%99%E9%A2%9D&quot; rel=&quot;nofollow&quot;&gt;鲜果推荐&lt;/a&gt;, &lt;a href=&quot;http://v.t.sina.com.cn/share/share.php?title=%E9%9D%92%E6%98%A5%E4%BD%99%E9%A2%9D%20-%20http://www.jeff-chen.com/youthful-balance/&quot; rel=&quot;nofollow&quot;&gt;新浪微博&lt;/a&gt;, &lt;a href=&quot;http://v.t.qq.com/share/share.php?title=%E9%9D%92%E6%98%A5%E4%BD%99%E9%A2%9D&amp;amp;url=http://www.jeff-chen.com/youthful-balance/&quot; title=&quot;分享到腾讯微博&quot; rel=&quot;nofollow&quot;&gt;腾讯微博&lt;/a&gt;, &lt;a href=&quot;http://share.xiaonei.com/share/buttonshare.do?link=http://www.jeff-chen.com/youthful-balance/&amp;amp;title=%E9%9D%92%E6%98%A5%E4%BD%99%E9%A2%9D&quot; title=&quot;分享到人人网&quot; rel=&quot;nofollow&quot;&gt;人人网&lt;/a&gt;, &lt;a href=&quot;http://www.kaixin001.com/repaste/share.php?url=http://www.jeff-chen.com/youthful-balance/&amp;amp;title=%E9%9D%92%E6%98%A5%E4%BD%99%E9%A2%9D&quot; title=&quot;分享到开心网&quot; rel=&quot;nofollow&quot;&gt;开心网&lt;/a&gt;, &lt;a href=&quot;http://www.douban.com/recommend/?url=http://www.jeff-chen.com/youthful-balance/&amp;amp;title=%E9%9D%92%E6%98%A5%E4%BD%99%E9%A2%9D&amp;amp;sel=&amp;amp;v=1&quot; title=&quot;分享到豆瓣推荐&quot; rel=&quot;nofollow&quot;&gt;豆瓣推荐&lt;/a&gt;, &lt;a href=&quot;http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=http://www.jeff-chen.com/youthful-balance/&quot; title=&quot;分享到QQ空间&quot; rel=&quot;nofollow&quot;&gt;QQ空间&lt;/a&gt;</content><author xmlns="http://www.w3.org/2005/Atom"><name>Jeff</name></author><source xmlns="http://www.w3.org/2005/Atom" gr:stream-id="feed/http://www.jeff-chen.com/feed/"><id>tag:google.com,2005:reader/feed/http://www.jeff-chen.com/feed/</id><title type="html">Jeff-Chen.Com</title><link rel="alternate" href="http://www.jeff-chen.com" type="text/html"></link></source><content:encoded>&lt;p&gt;今天收到一条广告短信：您好，您的青春余额已不多，请尽快充值。&lt;/p&gt;
&lt;p&gt;如果可以，不贪心，我想充值20年。&lt;/p&gt;
© 2004-2011 &lt;a href=&quot;http://www.jeff-chen.com&quot;&gt;Jeff-Chen.Com&lt;/a&gt; 版权所有 |
&lt;a href=&quot;http://www.jeff-chen.com/youthful-balance/&quot;&gt;文章链接&lt;/a&gt; |
&lt;strong&gt;&lt;a href=&quot;http://www.jeff-chen.com/youthful-balance/#respond&quot;&gt;4 条评论&lt;/a&gt;&lt;/strong&gt;
&lt;br&gt;
关键词: &lt;a href=&quot;http://www.jeff-chen.com/tag/micobog/&quot; rel=&quot;tag&quot;&gt;微博&lt;/a&gt;
&lt;hr&gt;
收藏: &lt;a href=&quot;http://shuqian.qq.com/post?title=%E9%9D%92%E6%98%A5%E4%BD%99%E9%A2%9D&amp;amp;uri=http://www.jeff-chen.com/youthful-balance/&quot; rel=&quot;nofollow&quot;&gt;QQ书签&lt;/a&gt;, &lt;a href=&quot;http://www.google.com/bookmarks/mark?op=edit&amp;amp;bkmk=http://www.jeff-chen.com/youthful-balance/&amp;amp;title=%E9%9D%92%E6%98%A5%E4%BD%99%E9%A2%9D&quot; rel=&quot;nofollow&quot;&gt;Google书签&lt;/a&gt;, &lt;a href=&quot;http://cang.baidu.com/do/add?it=%E9%9D%92%E6%98%A5%E4%BD%99%E9%A2%9D&amp;amp;iu=http://www.jeff-chen.com/youthful-balance/&amp;amp;dc=&amp;amp;fr=ien#nw=1&quot; rel=&quot;nofollow&quot;&gt;百度搜藏&lt;/a&gt; | 分享: &lt;a href=&quot;http://www.xianguo.com/service/submitdigg/?link=http://www.jeff-chen.com/youthful-balance/&amp;amp;title=%E9%9D%92%E6%98%A5%E4%BD%99%E9%A2%9D&quot; rel=&quot;nofollow&quot;&gt;鲜果推荐&lt;/a&gt;, &lt;a href=&quot;http://v.t.sina.com.cn/share/share.php?title=%E9%9D%92%E6%98%A5%E4%BD%99%E9%A2%9D%20-%20http://www.jeff-chen.com/youthful-balance/&quot; rel=&quot;nofollow&quot;&gt;新浪微博&lt;/a&gt;, &lt;a href=&quot;http://v.t.qq.com/share/share.php?title=%E9%9D%92%E6%98%A5%E4%BD%99%E9%A2%9D&amp;amp;url=http://www.jeff-chen.com/youthful-balance/&quot; title=&quot;分享到腾讯微博&quot; rel=&quot;nofollow&quot;&gt;腾讯微博&lt;/a&gt;, &lt;a href=&quot;http://share.xiaonei.com/share/buttonshare.do?link=http://www.jeff-chen.com/youthful-balance/&amp;amp;title=%E9%9D%92%E6%98%A5%E4%BD%99%E9%A2%9D&quot; title=&quot;分享到人人网&quot; rel=&quot;nofollow&quot;&gt;人人网&lt;/a&gt;, &lt;a href=&quot;http://www.kaixin001.com/repaste/share.php?url=http://www.jeff-chen.com/youthful-balance/&amp;amp;title=%E9%9D%92%E6%98%A5%E4%BD%99%E9%A2%9D&quot; title=&quot;分享到开心网&quot; rel=&quot;nofollow&quot;&gt;开心网&lt;/a&gt;, &lt;a href=&quot;http://www.douban.com/recommend/?url=http://www.jeff-chen.com/youthful-balance/&amp;amp;title=%E9%9D%92%E6%98%A5%E4%BD%99%E9%A2%9D&amp;amp;sel=&amp;amp;v=1&quot; title=&quot;分享到豆瓣推荐&quot; rel=&quot;nofollow&quot;&gt;豆瓣推荐&lt;/a&gt;, &lt;a href=&quot;http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=http://www.jeff-chen.com/youthful-balance/&quot; title=&quot;分享到QQ空间&quot; rel=&quot;nofollow&quot;&gt;QQ空间&lt;/a&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/566190765/sharer/feedsky/s.gif?r=http://www.jeff-chen.com/youthful-balance/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;</content:encoded><category>微博</category><pubDate>Tue, 20 Sep 2011 16:29:09 +0800</pubDate><guid isPermaLink="false">tag:google.com,2005:reader/item/b9f701fa641fc6d8</guid><dc:creator>Jeff</dc:creator><fs:srclink>http://www.jeff-chen.com/youthful-balance/</fs:srclink><fs:srcfeed>http://www.google.com/reader/public/atom/user%2F04568479978967443037%2Flabel%2FSharer</fs:srcfeed><fs:itemid>feedsky/sharer/~8223687/566190765/6299489</fs:itemid></item><item><title>服务器极不稳定</title><link atom:type="text/html">http://www.jeff-chen.com/server-is-very-unstable/</link><id xmlns="http://www.w3.org/2005/Atom" gr:original-id="http://www.jeff-chen.com/?p=1762">tag:google.com,2005:reader/item/63fa8d35d4ec2f7d</id><content xmlns="http://www.w3.org/2005/Atom" xml:base="http://www.jeff-chen.com/" type="html">&lt;p&gt;近来服务器极不稳定，已尝试各种办法无法解决。不排除被恶意攻击或由于外国IP被限制。各位请见谅，寻找新服务器和IP中。&lt;/p&gt;
© 2004-2011 &lt;a href=&quot;http://www.jeff-chen.com&quot;&gt;Jeff-Chen.Com&lt;/a&gt; 版权所有 |
&lt;a href=&quot;http://www.jeff-chen.com/server-is-very-unstable/&quot;&gt;文章链接&lt;/a&gt; |
&lt;strong&gt;&lt;a href=&quot;http://www.jeff-chen.com/server-is-very-unstable/#respond&quot;&gt;6 条评论&lt;/a&gt;&lt;/strong&gt;
&lt;br&gt;
关键词: &lt;a href=&quot;http://www.jeff-chen.com/tag/events/&quot; rel=&quot;tag&quot;&gt;工作室动态&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/log/&quot; rel=&quot;tag&quot;&gt;日志&lt;/a&gt;
&lt;hr&gt;
收藏: &lt;a href=&quot;http://shuqian.qq.com/post?title=%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%9E%81%E4%B8%8D%E7%A8%B3%E5%AE%9A&amp;amp;uri=http://www.jeff-chen.com/server-is-very-unstable/&quot; rel=&quot;nofollow&quot;&gt;QQ书签&lt;/a&gt;, &lt;a href=&quot;http://www.google.com/bookmarks/mark?op=edit&amp;amp;bkmk=http://www.jeff-chen.com/server-is-very-unstable/&amp;amp;title=%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%9E%81%E4%B8%8D%E7%A8%B3%E5%AE%9A&quot; rel=&quot;nofollow&quot;&gt;Google书签&lt;/a&gt;, &lt;a href=&quot;http://cang.baidu.com/do/add?it=%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%9E%81%E4%B8%8D%E7%A8%B3%E5%AE%9A&amp;amp;iu=http://www.jeff-chen.com/server-is-very-unstable/&amp;amp;dc=&amp;amp;fr=ien#nw=1&quot; rel=&quot;nofollow&quot;&gt;百度搜藏&lt;/a&gt; | 分享: &lt;a href=&quot;http://www.xianguo.com/service/submitdigg/?link=http://www.jeff-chen.com/server-is-very-unstable/&amp;amp;title=%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%9E%81%E4%B8%8D%E7%A8%B3%E5%AE%9A&quot; rel=&quot;nofollow&quot;&gt;鲜果推荐&lt;/a&gt;, &lt;a href=&quot;http://v.t.sina.com.cn/share/share.php?title=%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%9E%81%E4%B8%8D%E7%A8%B3%E5%AE%9A%20-%20http://www.jeff-chen.com/server-is-very-unstable/&quot; rel=&quot;nofollow&quot;&gt;新浪微博&lt;/a&gt;, &lt;a href=&quot;http://v.t.qq.com/share/share.php?title=%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%9E%81%E4%B8%8D%E7%A8%B3%E5%AE%9A&amp;amp;url=http://www.jeff-chen.com/server-is-very-unstable/&quot; title=&quot;分享到腾讯微博&quot; rel=&quot;nofollow&quot;&gt;腾讯微博&lt;/a&gt;, &lt;a href=&quot;http://share.xiaonei.com/share/buttonshare.do?link=http://www.jeff-chen.com/server-is-very-unstable/&amp;amp;title=%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%9E%81%E4%B8%8D%E7%A8%B3%E5%AE%9A&quot; title=&quot;分享到人人网&quot; rel=&quot;nofollow&quot;&gt;人人网&lt;/a&gt;, &lt;a href=&quot;http://www.kaixin001.com/repaste/share.php?url=http://www.jeff-chen.com/server-is-very-unstable/&amp;amp;title=%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%9E%81%E4%B8%8D%E7%A8%B3%E5%AE%9A&quot; title=&quot;分享到开心网&quot; rel=&quot;nofollow&quot;&gt;开心网&lt;/a&gt;, &lt;a href=&quot;http://www.douban.com/recommend/?url=http://www.jeff-chen.com/server-is-very-unstable/&amp;amp;title=%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%9E%81%E4%B8%8D%E7%A8%B3%E5%AE%9A&amp;amp;sel=&amp;amp;v=1&quot; title=&quot;分享到豆瓣推荐&quot; rel=&quot;nofollow&quot;&gt;豆瓣推荐&lt;/a&gt;, &lt;a href=&quot;http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=http://www.jeff-chen.com/server-is-very-unstable/&quot; title=&quot;分享到QQ空间&quot; rel=&quot;nofollow&quot;&gt;QQ空间&lt;/a&gt;</content><author xmlns="http://www.w3.org/2005/Atom"><name>Jeff</name></author><source xmlns="http://www.w3.org/2005/Atom" gr:stream-id="feed/http://www.jeff-chen.com/feed/"><id>tag:google.com,2005:reader/feed/http://www.jeff-chen.com/feed/</id><title type="html">Jeff-Chen.Com</title><link rel="alternate" href="http://www.jeff-chen.com" type="text/html"></link></source><content:encoded>&lt;p&gt;近来服务器极不稳定，已尝试各种办法无法解决。不排除被恶意攻击或由于外国IP被限制。各位请见谅，寻找新服务器和IP中。&lt;/p&gt;
© 2004-2011 &lt;a href=&quot;http://www.jeff-chen.com&quot;&gt;Jeff-Chen.Com&lt;/a&gt; 版权所有 |
&lt;a href=&quot;http://www.jeff-chen.com/server-is-very-unstable/&quot;&gt;文章链接&lt;/a&gt; |
&lt;strong&gt;&lt;a href=&quot;http://www.jeff-chen.com/server-is-very-unstable/#respond&quot;&gt;6 条评论&lt;/a&gt;&lt;/strong&gt;
&lt;br&gt;
关键词: &lt;a href=&quot;http://www.jeff-chen.com/tag/events/&quot; rel=&quot;tag&quot;&gt;工作室动态&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/log/&quot; rel=&quot;tag&quot;&gt;日志&lt;/a&gt;
&lt;hr&gt;
收藏: &lt;a href=&quot;http://shuqian.qq.com/post?title=%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%9E%81%E4%B8%8D%E7%A8%B3%E5%AE%9A&amp;amp;uri=http://www.jeff-chen.com/server-is-very-unstable/&quot; rel=&quot;nofollow&quot;&gt;QQ书签&lt;/a&gt;, &lt;a href=&quot;http://www.google.com/bookmarks/mark?op=edit&amp;amp;bkmk=http://www.jeff-chen.com/server-is-very-unstable/&amp;amp;title=%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%9E%81%E4%B8%8D%E7%A8%B3%E5%AE%9A&quot; rel=&quot;nofollow&quot;&gt;Google书签&lt;/a&gt;, &lt;a href=&quot;http://cang.baidu.com/do/add?it=%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%9E%81%E4%B8%8D%E7%A8%B3%E5%AE%9A&amp;amp;iu=http://www.jeff-chen.com/server-is-very-unstable/&amp;amp;dc=&amp;amp;fr=ien#nw=1&quot; rel=&quot;nofollow&quot;&gt;百度搜藏&lt;/a&gt; | 分享: &lt;a href=&quot;http://www.xianguo.com/service/submitdigg/?link=http://www.jeff-chen.com/server-is-very-unstable/&amp;amp;title=%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%9E%81%E4%B8%8D%E7%A8%B3%E5%AE%9A&quot; rel=&quot;nofollow&quot;&gt;鲜果推荐&lt;/a&gt;, &lt;a href=&quot;http://v.t.sina.com.cn/share/share.php?title=%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%9E%81%E4%B8%8D%E7%A8%B3%E5%AE%9A%20-%20http://www.jeff-chen.com/server-is-very-unstable/&quot; rel=&quot;nofollow&quot;&gt;新浪微博&lt;/a&gt;, &lt;a href=&quot;http://v.t.qq.com/share/share.php?title=%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%9E%81%E4%B8%8D%E7%A8%B3%E5%AE%9A&amp;amp;url=http://www.jeff-chen.com/server-is-very-unstable/&quot; title=&quot;分享到腾讯微博&quot; rel=&quot;nofollow&quot;&gt;腾讯微博&lt;/a&gt;, &lt;a href=&quot;http://share.xiaonei.com/share/buttonshare.do?link=http://www.jeff-chen.com/server-is-very-unstable/&amp;amp;title=%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%9E%81%E4%B8%8D%E7%A8%B3%E5%AE%9A&quot; title=&quot;分享到人人网&quot; rel=&quot;nofollow&quot;&gt;人人网&lt;/a&gt;, &lt;a href=&quot;http://www.kaixin001.com/repaste/share.php?url=http://www.jeff-chen.com/server-is-very-unstable/&amp;amp;title=%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%9E%81%E4%B8%8D%E7%A8%B3%E5%AE%9A&quot; title=&quot;分享到开心网&quot; rel=&quot;nofollow&quot;&gt;开心网&lt;/a&gt;, &lt;a href=&quot;http://www.douban.com/recommend/?url=http://www.jeff-chen.com/server-is-very-unstable/&amp;amp;title=%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%9E%81%E4%B8%8D%E7%A8%B3%E5%AE%9A&amp;amp;sel=&amp;amp;v=1&quot; title=&quot;分享到豆瓣推荐&quot; rel=&quot;nofollow&quot;&gt;豆瓣推荐&lt;/a&gt;, &lt;a href=&quot;http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=http://www.jeff-chen.com/server-is-very-unstable/&quot; title=&quot;分享到QQ空间&quot; rel=&quot;nofollow&quot;&gt;QQ空间&lt;/a&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/566190766/sharer/feedsky/s.gif?r=http://www.jeff-chen.com/server-is-very-unstable/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;</content:encoded><category>动态</category><category>工作室动态</category><category>日志</category><pubDate>Tue, 13 Sep 2011 08:20:42 +0800</pubDate><guid isPermaLink="false">tag:google.com,2005:reader/item/63fa8d35d4ec2f7d</guid><dc:creator>Jeff</dc:creator><fs:srclink>http://www.jeff-chen.com/server-is-very-unstable/</fs:srclink><fs:srcfeed>http://www.google.com/reader/public/atom/user%2F04568479978967443037%2Flabel%2FSharer</fs:srcfeed><fs:itemid>feedsky/sharer/~8223687/566190766/6299489</fs:itemid></item><item><title>异常忙碌</title><link atom:type="text/html">http://www.jeff-chen.com/unusually-busy/</link><id xmlns="http://www.w3.org/2005/Atom" gr:original-id="http://www.jeff-chen.com/?p=1759">tag:google.com,2005:reader/item/61b5c56937135a8a</id><content xmlns="http://www.w3.org/2005/Atom" xml:base="http://www.jeff-chen.com/" type="html">&lt;p&gt;每次休假回来的那个月总是异常的忙碌，精神紧张，睡眠不足。早上闹钟响了几次我都没有听到。&lt;/p&gt;
© 2004-2011 &lt;a href=&quot;http://www.jeff-chen.com&quot;&gt;Jeff-Chen.Com&lt;/a&gt; 版权所有 |
&lt;a href=&quot;http://www.jeff-chen.com/unusually-busy/&quot;&gt;文章链接&lt;/a&gt; |
&lt;strong&gt;&lt;a href=&quot;http://www.jeff-chen.com/unusually-busy/#respond&quot;&gt;5 条评论&lt;/a&gt;&lt;/strong&gt;
&lt;br&gt;
关键词: &lt;a href=&quot;http://www.jeff-chen.com/tag/micobog/&quot; rel=&quot;tag&quot;&gt;微博&lt;/a&gt;
&lt;hr&gt;
收藏: &lt;a href=&quot;http://shuqian.qq.com/post?title=%E5%BC%82%E5%B8%B8%E5%BF%99%E7%A2%8C&amp;amp;uri=http://www.jeff-chen.com/unusually-busy/&quot; rel=&quot;nofollow&quot;&gt;QQ书签&lt;/a&gt;, &lt;a href=&quot;http://www.google.com/bookmarks/mark?op=edit&amp;amp;bkmk=http://www.jeff-chen.com/unusually-busy/&amp;amp;title=%E5%BC%82%E5%B8%B8%E5%BF%99%E7%A2%8C&quot; rel=&quot;nofollow&quot;&gt;Google书签&lt;/a&gt;, &lt;a href=&quot;http://cang.baidu.com/do/add?it=%E5%BC%82%E5%B8%B8%E5%BF%99%E7%A2%8C&amp;amp;iu=http://www.jeff-chen.com/unusually-busy/&amp;amp;dc=&amp;amp;fr=ien#nw=1&quot; rel=&quot;nofollow&quot;&gt;百度搜藏&lt;/a&gt; | 分享: &lt;a href=&quot;http://www.xianguo.com/service/submitdigg/?link=http://www.jeff-chen.com/unusually-busy/&amp;amp;title=%E5%BC%82%E5%B8%B8%E5%BF%99%E7%A2%8C&quot; rel=&quot;nofollow&quot;&gt;鲜果推荐&lt;/a&gt;, &lt;a href=&quot;http://v.t.sina.com.cn/share/share.php?title=%E5%BC%82%E5%B8%B8%E5%BF%99%E7%A2%8C%20-%20http://www.jeff-chen.com/unusually-busy/&quot; rel=&quot;nofollow&quot;&gt;新浪微博&lt;/a&gt;, &lt;a href=&quot;http://v.t.qq.com/share/share.php?title=%E5%BC%82%E5%B8%B8%E5%BF%99%E7%A2%8C&amp;amp;url=http://www.jeff-chen.com/unusually-busy/&quot; title=&quot;分享到腾讯微博&quot; rel=&quot;nofollow&quot;&gt;腾讯微博&lt;/a&gt;, &lt;a href=&quot;http://share.xiaonei.com/share/buttonshare.do?link=http://www.jeff-chen.com/unusually-busy/&amp;amp;title=%E5%BC%82%E5%B8%B8%E5%BF%99%E7%A2%8C&quot; title=&quot;分享到人人网&quot; rel=&quot;nofollow&quot;&gt;人人网&lt;/a&gt;, &lt;a href=&quot;http://www.kaixin001.com/repaste/share.php?url=http://www.jeff-chen.com/unusually-busy/&amp;amp;title=%E5%BC%82%E5%B8%B8%E5%BF%99%E7%A2%8C&quot; title=&quot;分享到开心网&quot; rel=&quot;nofollow&quot;&gt;开心网&lt;/a&gt;, &lt;a href=&quot;http://www.douban.com/recommend/?url=http://www.jeff-chen.com/unusually-busy/&amp;amp;title=%E5%BC%82%E5%B8%B8%E5%BF%99%E7%A2%8C&amp;amp;sel=&amp;amp;v=1&quot; title=&quot;分享到豆瓣推荐&quot; rel=&quot;nofollow&quot;&gt;豆瓣推荐&lt;/a&gt;, &lt;a href=&quot;http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=http://www.jeff-chen.com/unusually-busy/&quot; title=&quot;分享到QQ空间&quot; rel=&quot;nofollow&quot;&gt;QQ空间&lt;/a&gt;</content><author xmlns="http://www.w3.org/2005/Atom"><name>Jeff</name></author><source xmlns="http://www.w3.org/2005/Atom" gr:stream-id="feed/http://www.jeff-chen.com/feed/"><id>tag:google.com,2005:reader/feed/http://www.jeff-chen.com/feed/</id><title type="html">Jeff-Chen.Com</title><link rel="alternate" href="http://www.jeff-chen.com" type="text/html"></link></source><content:encoded>&lt;p&gt;每次休假回来的那个月总是异常的忙碌，精神紧张，睡眠不足。早上闹钟响了几次我都没有听到。&lt;/p&gt;
© 2004-2011 &lt;a href=&quot;http://www.jeff-chen.com&quot;&gt;Jeff-Chen.Com&lt;/a&gt; 版权所有 |
&lt;a href=&quot;http://www.jeff-chen.com/unusually-busy/&quot;&gt;文章链接&lt;/a&gt; |
&lt;strong&gt;&lt;a href=&quot;http://www.jeff-chen.com/unusually-busy/#respond&quot;&gt;5 条评论&lt;/a&gt;&lt;/strong&gt;
&lt;br&gt;
关键词: &lt;a href=&quot;http://www.jeff-chen.com/tag/micobog/&quot; rel=&quot;tag&quot;&gt;微博&lt;/a&gt;
&lt;hr&gt;
收藏: &lt;a href=&quot;http://shuqian.qq.com/post?title=%E5%BC%82%E5%B8%B8%E5%BF%99%E7%A2%8C&amp;amp;uri=http://www.jeff-chen.com/unusually-busy/&quot; rel=&quot;nofollow&quot;&gt;QQ书签&lt;/a&gt;, &lt;a href=&quot;http://www.google.com/bookmarks/mark?op=edit&amp;amp;bkmk=http://www.jeff-chen.com/unusually-busy/&amp;amp;title=%E5%BC%82%E5%B8%B8%E5%BF%99%E7%A2%8C&quot; rel=&quot;nofollow&quot;&gt;Google书签&lt;/a&gt;, &lt;a href=&quot;http://cang.baidu.com/do/add?it=%E5%BC%82%E5%B8%B8%E5%BF%99%E7%A2%8C&amp;amp;iu=http://www.jeff-chen.com/unusually-busy/&amp;amp;dc=&amp;amp;fr=ien#nw=1&quot; rel=&quot;nofollow&quot;&gt;百度搜藏&lt;/a&gt; | 分享: &lt;a href=&quot;http://www.xianguo.com/service/submitdigg/?link=http://www.jeff-chen.com/unusually-busy/&amp;amp;title=%E5%BC%82%E5%B8%B8%E5%BF%99%E7%A2%8C&quot; rel=&quot;nofollow&quot;&gt;鲜果推荐&lt;/a&gt;, &lt;a href=&quot;http://v.t.sina.com.cn/share/share.php?title=%E5%BC%82%E5%B8%B8%E5%BF%99%E7%A2%8C%20-%20http://www.jeff-chen.com/unusually-busy/&quot; rel=&quot;nofollow&quot;&gt;新浪微博&lt;/a&gt;, &lt;a href=&quot;http://v.t.qq.com/share/share.php?title=%E5%BC%82%E5%B8%B8%E5%BF%99%E7%A2%8C&amp;amp;url=http://www.jeff-chen.com/unusually-busy/&quot; title=&quot;分享到腾讯微博&quot; rel=&quot;nofollow&quot;&gt;腾讯微博&lt;/a&gt;, &lt;a href=&quot;http://share.xiaonei.com/share/buttonshare.do?link=http://www.jeff-chen.com/unusually-busy/&amp;amp;title=%E5%BC%82%E5%B8%B8%E5%BF%99%E7%A2%8C&quot; title=&quot;分享到人人网&quot; rel=&quot;nofollow&quot;&gt;人人网&lt;/a&gt;, &lt;a href=&quot;http://www.kaixin001.com/repaste/share.php?url=http://www.jeff-chen.com/unusually-busy/&amp;amp;title=%E5%BC%82%E5%B8%B8%E5%BF%99%E7%A2%8C&quot; title=&quot;分享到开心网&quot; rel=&quot;nofollow&quot;&gt;开心网&lt;/a&gt;, &lt;a href=&quot;http://www.douban.com/recommend/?url=http://www.jeff-chen.com/unusually-busy/&amp;amp;title=%E5%BC%82%E5%B8%B8%E5%BF%99%E7%A2%8C&amp;amp;sel=&amp;amp;v=1&quot; title=&quot;分享到豆瓣推荐&quot; rel=&quot;nofollow&quot;&gt;豆瓣推荐&lt;/a&gt;, &lt;a href=&quot;http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=http://www.jeff-chen.com/unusually-busy/&quot; title=&quot;分享到QQ空间&quot; rel=&quot;nofollow&quot;&gt;QQ空间&lt;/a&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/566190767/sharer/feedsky/s.gif?r=http://www.jeff-chen.com/unusually-busy/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;</content:encoded><category>微博</category><pubDate>Tue, 23 Aug 2011 10:29:00 +0800</pubDate><guid isPermaLink="false">tag:google.com,2005:reader/item/61b5c56937135a8a</guid><dc:creator>Jeff</dc:creator><fs:srclink>http://www.jeff-chen.com/unusually-busy/</fs:srclink><fs:srcfeed>http://www.google.com/reader/public/atom/user%2F04568479978967443037%2Flabel%2FSharer</fs:srcfeed><fs:itemid>feedsky/sharer/~8223687/566190767/6299489</fs:itemid></item><item><title>CentOS 6.0 正式版下载 – 免费企业级 Linux 服务器操作系统</title><link atom:type="text/html">http://www.jeff-chen.com/centos-6-0-full-version-download-free-enterprise-linux-server-operating-system/</link><id xmlns="http://www.w3.org/2005/Atom" gr:original-id="http://www.jeff-chen.com/?p=1755">tag:google.com,2005:reader/item/64723527ee0113c5</id><content xmlns="http://www.w3.org/2005/Atom" xml:base="http://www.jeff-chen.com/" type="html">&lt;h3&gt;CentOS 概述：&lt;/h3&gt;
&lt;p&gt;CentOS 是企业 Linux 发行版领头羊 Red Hat Enterprise Linux（以下称之为RHEL）的源代码再编译版本，RHEL是很多大型企业采用的操作系统，但需要向RedHat购买使用权，有偿享受技术支持、版本升级等。所以 CentOS 其实就是相当于免费版的RedHat，任何人可以自由使用，不需要向RedHat付任何的费用。当然，同样你也得不到任何有偿的技术支持和升级服务。&lt;/p&gt;
&lt;p&gt;典型的 CentOS 用户包括一些中小企业和个人，他们并不需要专门的商业支持服务，以最低的成本就能开展稳定的业务。非常适合那些需要可靠、成熟、稳定的企业级操作系统，却又不愿意负担高昂技术支持成本开销的人。于是，当初我在给 异次元软件世界 的服务器选择 Linux 发行版时毫不犹豫地就选择 CentOS 了。虽然 CentOS 没有有偿的技术支持，但网上极其丰富的学习资料、论坛、社区等也能让人感到非常的放心！&lt;/p&gt;
&lt;h3&gt;值得你学习的 Linux 操作系统：&lt;/h3&gt;
&lt;p&gt;根据我的了解，CentOS 在国内中小型公司、服务器提供商中的装机量都是非常高的！所以，对于学习互联网技术，想自己建网站的同学来说，了解学习研究 CentOS 是非常有好处的。如果你目前还不需要构建一个真实的生产环境，那么使用 VMWare Player 或其他 虚拟机 来安装个 CentOS 摸索一下也未尝不可。我最初也就是看着《鸟哥的Linux私房菜》在虚拟机里摆弄 CentOS，最后它就一直在稳定地在后台默默地为大家提供服务了，现在你看到的稳定的异次元，CentOS 功不可没……&lt;/p&gt;
&lt;p&gt;服务器和个人电脑最本质的区别无非就是服务器是为了提供稳定的服务而存在，因此你在 CentOS 这类操作系统中是看不到华丽的桌面或者炫丽的特效的，因此玩转它们估计会比 Ubuntu、Windows7 等系统少一点“乐趣”，但当你成为一个 CentOS 的高手之后，估计你随便去找找都能有一份相当不错的工作了。&lt;/p&gt;
&lt;h3&gt;相关文件下载地址：&lt;/h3&gt;
&lt;p&gt;官方网站：&lt;a href=&quot;http://www.centos.org/&quot;&gt;访问&lt;/a&gt;&lt;br&gt;
软件性质：免费&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://wiki.centos.org/zh/Manuals/ReleaseNotes/CentOS6.0&quot;&gt;发行注记&lt;/a&gt; /  下载：&lt;a href=&quot;http://mirror.centos.org/centos/6/isos/i386/&quot;&gt;i386&lt;/a&gt; | &lt;a href=&quot;http://mirror.centos.org/centos/6/isos/x86_64/&quot;&gt;x86_64&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;国内镜像站点&lt;/strong&gt;&lt;br&gt;
网易镜像站点：&lt;a href=&quot;http://mirrors.163.com/centos/6.0/isos/&quot; rel=&quot;nofollow&quot;&gt;http://mirrors.163.com/centos/6.0/isos/&lt;/a&gt;&lt;br&gt;
中科大镜像站点：&lt;a href=&quot;http://centos.ustc.edu.cn/centos/6.0/isos/&quot; rel=&quot;nofollow&quot;&gt;http://centos.ustc.edu.cn/centos/6.0/isos/&lt;/a&gt;&lt;/p&gt;
© 2004-2011 &lt;a href=&quot;http://www.jeff-chen.com&quot;&gt;Jeff-Chen.Com&lt;/a&gt; 版权所有 |
&lt;a href=&quot;http://www.jeff-chen.com/centos-6-0-full-version-download-free-enterprise-linux-server-operating-system/&quot;&gt;文章链接&lt;/a&gt; |
&lt;strong&gt;&lt;a href=&quot;http://www.jeff-chen.com/centos-6-0-full-version-download-free-enterprise-linux-server-operating-system/#respond&quot;&gt;5 条评论&lt;/a&gt;&lt;/strong&gt;
&lt;br&gt;
关键词: &lt;a href=&quot;http://www.jeff-chen.com/tag/centos/&quot; rel=&quot;tag&quot;&gt;CentOS&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/linux/&quot; rel=&quot;tag&quot;&gt;Linux&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/download/&quot; rel=&quot;tag&quot;&gt;下载&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/oss/&quot; rel=&quot;tag&quot;&gt;开源软件&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/os/&quot; rel=&quot;tag&quot;&gt;操作系统&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/server/&quot; rel=&quot;tag&quot;&gt;服务器&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/website/&quot; rel=&quot;tag&quot;&gt;网站&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/software/&quot; rel=&quot;tag&quot;&gt;软件&lt;/a&gt;
&lt;hr&gt;
收藏: &lt;a href=&quot;http://shuqian.qq.com/post?title=CentOS%206.0%20%E6%AD%A3%E5%BC%8F%E7%89%88%E4%B8%8B%E8%BD%BD%20%E2%80%93%20%E5%85%8D%E8%B4%B9%E4%BC%81%E4%B8%9A%E7%BA%A7%20Linux%20%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%93%8D%E4%BD%9C%E7%B3%BB%E7%BB%9F&amp;amp;uri=http://www.jeff-chen.com/centos-6-0-full-version-download-free-enterprise-linux-server-operating-system/&quot; rel=&quot;nofollow&quot;&gt;QQ书签&lt;/a&gt;, &lt;a href=&quot;http://www.google.com/bookmarks/mark?op=edit&amp;amp;bkmk=http://www.jeff-chen.com/centos-6-0-full-version-download-free-enterprise-linux-server-operating-system/&amp;amp;title=CentOS%206.0%20%E6%AD%A3%E5%BC%8F%E7%89%88%E4%B8%8B%E8%BD%BD%20%E2%80%93%20%E5%85%8D%E8%B4%B9%E4%BC%81%E4%B8%9A%E7%BA%A7%20Linux%20%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%93%8D%E4%BD%9C%E7%B3%BB%E7%BB%9F&quot; rel=&quot;nofollow&quot;&gt;Google书签&lt;/a&gt;, &lt;a href=&quot;http://cang.baidu.com/do/add?it=CentOS%206.0%20%E6%AD%A3%E5%BC%8F%E7%89%88%E4%B8%8B%E8%BD%BD%20%E2%80%93%20%E5%85%8D%E8%B4%B9%E4%BC%81%E4%B8%9A%E7%BA%A7%20Linux%20%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%93%8D%E4%BD%9C%E7%B3%BB%E7%BB%9F&amp;amp;iu=http://www.jeff-chen.com/centos-6-0-full-version-download-free-enterprise-linux-server-operating-system/&amp;amp;dc=&amp;amp;fr=ien#nw=1&quot; rel=&quot;nofollow&quot;&gt;百度搜藏&lt;/a&gt; | 分享: &lt;a href=&quot;http://www.xianguo.com/service/submitdigg/?link=http://www.jeff-chen.com/centos-6-0-full-version-download-free-enterprise-linux-server-operating-system/&amp;amp;title=CentOS%206.0%20%E6%AD%A3%E5%BC%8F%E7%89%88%E4%B8%8B%E8%BD%BD%20%E2%80%93%20%E5%85%8D%E8%B4%B9%E4%BC%81%E4%B8%9A%E7%BA%A7%20Linux%20%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%93%8D%E4%BD%9C%E7%B3%BB%E7%BB%9F&quot; rel=&quot;nofollow&quot;&gt;鲜果推荐&lt;/a&gt;, &lt;a href=&quot;http://v.t.sina.com.cn/share/share.php?title=CentOS%206.0%20%E6%AD%A3%E5%BC%8F%E7%89%88%E4%B8%8B%E8%BD%BD%20%E2%80%93%20%E5%85%8D%E8%B4%B9%E4%BC%81%E4%B8%9A%E7%BA%A7%20Linux%20%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%93%8D%E4%BD%9C%E7%B3%BB%E7%BB%9F%20-%20http://www.jeff-chen.com/centos-6-0-full-version-download-free-enterprise-linux-server-operating-system/&quot; rel=&quot;nofollow&quot;&gt;新浪微博&lt;/a&gt;, &lt;a href=&quot;http://v.t.qq.com/share/share.php?title=CentOS%206.0%20%E6%AD%A3%E5%BC%8F%E7%89%88%E4%B8%8B%E8%BD%BD%20%E2%80%93%20%E5%85%8D%E8%B4%B9%E4%BC%81%E4%B8%9A%E7%BA%A7%20Linux%20%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%93%8D%E4%BD%9C%E7%B3%BB%E7%BB%9F&amp;amp;url=http://www.jeff-chen.com/centos-6-0-full-version-download-free-enterprise-linux-server-operating-system/&quot; title=&quot;分享到腾讯微博&quot; rel=&quot;nofollow&quot;&gt;腾讯微博&lt;/a&gt;, &lt;a href=&quot;http://share.xiaonei.com/share/buttonshare.do?link=http://www.jeff-chen.com/centos-6-0-full-version-download-free-enterprise-linux-server-operating-system/&amp;amp;title=CentOS%206.0%20%E6%AD%A3%E5%BC%8F%E7%89%88%E4%B8%8B%E8%BD%BD%20%E2%80%93%20%E5%85%8D%E8%B4%B9%E4%BC%81%E4%B8%9A%E7%BA%A7%20Linux%20%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%93%8D%E4%BD%9C%E7%B3%BB%E7%BB%9F&quot; title=&quot;分享到人人网&quot; rel=&quot;nofollow&quot;&gt;人人网&lt;/a&gt;, &lt;a href=&quot;http://www.kaixin001.com/repaste/share.php?url=http://www.jeff-chen.com/centos-6-0-full-version-download-free-enterprise-linux-server-operating-system/&amp;amp;title=CentOS%206.0%20%E6%AD%A3%E5%BC%8F%E7%89%88%E4%B8%8B%E8%BD%BD%20%E2%80%93%20%E5%85%8D%E8%B4%B9%E4%BC%81%E4%B8%9A%E7%BA%A7%20Linux%20%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%93%8D%E4%BD%9C%E7%B3%BB%E7%BB%9F&quot; title=&quot;分享到开心网&quot; rel=&quot;nofollow&quot;&gt;开心网&lt;/a&gt;, &lt;a href=&quot;http://www.douban.com/recommend/?url=http://www.jeff-chen.com/centos-6-0-full-version-download-free-enterprise-linux-server-operating-system/&amp;amp;title=CentOS%206.0%20%E6%AD%A3%E5%BC%8F%E7%89%88%E4%B8%8B%E8%BD%BD%20%E2%80%93%20%E5%85%8D%E8%B4%B9%E4%BC%81%E4%B8%9A%E7%BA%A7%20Linux%20%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%93%8D%E4%BD%9C%E7%B3%BB%E7%BB%9F&amp;amp;sel=&amp;amp;v=1&quot; title=&quot;分享到豆瓣推荐&quot; rel=&quot;nofollow&quot;&gt;豆瓣推荐&lt;/a&gt;, &lt;a href=&quot;http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=http://www.jeff-chen.com/centos-6-0-full-version-download-free-enterprise-linux-server-operating-system/&quot; title=&quot;分享到QQ空间&quot; rel=&quot;nofollow&quot;&gt;QQ空间&lt;/a&gt;</content><author xmlns="http://www.w3.org/2005/Atom"><name>Jeff</name></author><source xmlns="http://www.w3.org/2005/Atom" gr:stream-id="feed/http://www.jeff-chen.com/feed/"><id>tag:google.com,2005:reader/feed/http://www.jeff-chen.com/feed/</id><title type="html">Jeff-Chen.Com</title><link rel="alternate" href="http://www.jeff-chen.com" type="text/html"></link></source><content:encoded>&lt;h3&gt;CentOS 概述：&lt;/h3&gt;
&lt;p&gt;CentOS 是企业 Linux 发行版领头羊 Red Hat Enterprise Linux（以下称之为RHEL）的源代码再编译版本，RHEL是很多大型企业采用的操作系统，但需要向RedHat购买使用权，有偿享受技术支持、版本升级等。所以 CentOS 其实就是相当于免费版的RedHat，任何人可以自由使用，不需要向RedHat付任何的费用。当然，同样你也得不到任何有偿的技术支持和升级服务。&lt;/p&gt;
&lt;p&gt;典型的 CentOS 用户包括一些中小企业和个人，他们并不需要专门的商业支持服务，以最低的成本就能开展稳定的业务。非常适合那些需要可靠、成熟、稳定的企业级操作系统，却又不愿意负担高昂技术支持成本开销的人。于是，当初我在给 异次元软件世界 的服务器选择 Linux 发行版时毫不犹豫地就选择 CentOS 了。虽然 CentOS 没有有偿的技术支持，但网上极其丰富的学习资料、论坛、社区等也能让人感到非常的放心！&lt;/p&gt;
&lt;h3&gt;值得你学习的 Linux 操作系统：&lt;/h3&gt;
&lt;p&gt;根据我的了解，CentOS 在国内中小型公司、服务器提供商中的装机量都是非常高的！所以，对于学习互联网技术，想自己建网站的同学来说，了解学习研究 CentOS 是非常有好处的。如果你目前还不需要构建一个真实的生产环境，那么使用 VMWare Player 或其他 虚拟机 来安装个 CentOS 摸索一下也未尝不可。我最初也就是看着《鸟哥的Linux私房菜》在虚拟机里摆弄 CentOS，最后它就一直在稳定地在后台默默地为大家提供服务了，现在你看到的稳定的异次元，CentOS 功不可没……&lt;/p&gt;
&lt;p&gt;服务器和个人电脑最本质的区别无非就是服务器是为了提供稳定的服务而存在，因此你在 CentOS 这类操作系统中是看不到华丽的桌面或者炫丽的特效的，因此玩转它们估计会比 Ubuntu、Windows7 等系统少一点“乐趣”，但当你成为一个 CentOS 的高手之后，估计你随便去找找都能有一份相当不错的工作了。&lt;/p&gt;
&lt;h3&gt;相关文件下载地址：&lt;/h3&gt;
&lt;p&gt;官方网站：&lt;a href=&quot;http://www.centos.org/&quot;&gt;访问&lt;/a&gt;&lt;br&gt;
软件性质：免费&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://wiki.centos.org/zh/Manuals/ReleaseNotes/CentOS6.0&quot;&gt;发行注记&lt;/a&gt; /  下载：&lt;a href=&quot;http://mirror.centos.org/centos/6/isos/i386/&quot;&gt;i386&lt;/a&gt; | &lt;a href=&quot;http://mirror.centos.org/centos/6/isos/x86_64/&quot;&gt;x86_64&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;国内镜像站点&lt;/strong&gt;&lt;br&gt;
网易镜像站点：&lt;a href=&quot;http://mirrors.163.com/centos/6.0/isos/&quot; rel=&quot;nofollow&quot;&gt;http://mirrors.163.com/centos/6.0/isos/&lt;/a&gt;&lt;br&gt;
中科大镜像站点：&lt;a href=&quot;http://centos.ustc.edu.cn/centos/6.0/isos/&quot; rel=&quot;nofollow&quot;&gt;http://centos.ustc.edu.cn/centos/6.0/isos/&lt;/a&gt;&lt;/p&gt;
© 2004-2011 &lt;a href=&quot;http://www.jeff-chen.com&quot;&gt;Jeff-Chen.Com&lt;/a&gt; 版权所有 |
&lt;a href=&quot;http://www.jeff-chen.com/centos-6-0-full-version-download-free-enterprise-linux-server-operating-system/&quot;&gt;文章链接&lt;/a&gt; |
&lt;strong&gt;&lt;a href=&quot;http://www.jeff-chen.com/centos-6-0-full-version-download-free-enterprise-linux-server-operating-system/#respond&quot;&gt;5 条评论&lt;/a&gt;&lt;/strong&gt;
&lt;br&gt;
关键词: &lt;a href=&quot;http://www.jeff-chen.com/tag/centos/&quot; rel=&quot;tag&quot;&gt;CentOS&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/linux/&quot; rel=&quot;tag&quot;&gt;Linux&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/download/&quot; rel=&quot;tag&quot;&gt;下载&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/oss/&quot; rel=&quot;tag&quot;&gt;开源软件&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/os/&quot; rel=&quot;tag&quot;&gt;操作系统&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/server/&quot; rel=&quot;tag&quot;&gt;服务器&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/website/&quot; rel=&quot;tag&quot;&gt;网站&lt;/a&gt;, &lt;a href=&quot;http://www.jeff-chen.com/tag/software/&quot; rel=&quot;tag&quot;&gt;软件&lt;/a&gt;
&lt;hr&gt;
收藏: &lt;a href=&quot;http://shuqian.qq.com/post?title=CentOS%206.0%20%E6%AD%A3%E5%BC%8F%E7%89%88%E4%B8%8B%E8%BD%BD%20%E2%80%93%20%E5%85%8D%E8%B4%B9%E4%BC%81%E4%B8%9A%E7%BA%A7%20Linux%20%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%93%8D%E4%BD%9C%E7%B3%BB%E7%BB%9F&amp;amp;uri=http://www.jeff-chen.com/centos-6-0-full-version-download-free-enterprise-linux-server-operating-system/&quot; rel=&quot;nofollow&quot;&gt;QQ书签&lt;/a&gt;, &lt;a href=&quot;http://www.google.com/bookmarks/mark?op=edit&amp;amp;bkmk=http://www.jeff-chen.com/centos-6-0-full-version-download-free-enterprise-linux-server-operating-system/&amp;amp;title=CentOS%206.0%20%E6%AD%A3%E5%BC%8F%E7%89%88%E4%B8%8B%E8%BD%BD%20%E2%80%93%20%E5%85%8D%E8%B4%B9%E4%BC%81%E4%B8%9A%E7%BA%A7%20Linux%20%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%93%8D%E4%BD%9C%E7%B3%BB%E7%BB%9F&quot; rel=&quot;nofollow&quot;&gt;Google书签&lt;/a&gt;, &lt;a href=&quot;http://cang.baidu.com/do/add?it=CentOS%206.0%20%E6%AD%A3%E5%BC%8F%E7%89%88%E4%B8%8B%E8%BD%BD%20%E2%80%93%20%E5%85%8D%E8%B4%B9%E4%BC%81%E4%B8%9A%E7%BA%A7%20Linux%20%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%93%8D%E4%BD%9C%E7%B3%BB%E7%BB%9F&amp;amp;iu=http://www.jeff-chen.com/centos-6-0-full-version-download-free-enterprise-linux-server-operating-system/&amp;amp;dc=&amp;amp;fr=ien#nw=1&quot; rel=&quot;nofollow&quot;&gt;百度搜藏&lt;/a&gt; | 分享: &lt;a href=&quot;http://www.xianguo.com/service/submitdigg/?link=http://www.jeff-chen.com/centos-6-0-full-version-download-free-enterprise-linux-server-operating-system/&amp;amp;title=CentOS%206.0%20%E6%AD%A3%E5%BC%8F%E7%89%88%E4%B8%8B%E8%BD%BD%20%E2%80%93%20%E5%85%8D%E8%B4%B9%E4%BC%81%E4%B8%9A%E7%BA%A7%20Linux%20%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%93%8D%E4%BD%9C%E7%B3%BB%E7%BB%9F&quot; rel=&quot;nofollow&quot;&gt;鲜果推荐&lt;/a&gt;, &lt;a href=&quot;http://v.t.sina.com.cn/share/share.php?title=CentOS%206.0%20%E6%AD%A3%E5%BC%8F%E7%89%88%E4%B8%8B%E8%BD%BD%20%E2%80%93%20%E5%85%8D%E8%B4%B9%E4%BC%81%E4%B8%9A%E7%BA%A7%20Linux%20%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%93%8D%E4%BD%9C%E7%B3%BB%E7%BB%9F%20-%20http://www.jeff-chen.com/centos-6-0-full-version-download-free-enterprise-linux-server-operating-system/&quot; rel=&quot;nofollow&quot;&gt;新浪微博&lt;/a&gt;, &lt;a href=&quot;http://v.t.qq.com/share/share.php?title=CentOS%206.0%20%E6%AD%A3%E5%BC%8F%E7%89%88%E4%B8%8B%E8%BD%BD%20%E2%80%93%20%E5%85%8D%E8%B4%B9%E4%BC%81%E4%B8%9A%E7%BA%A7%20Linux%20%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%93%8D%E4%BD%9C%E7%B3%BB%E7%BB%9F&amp;amp;url=http://www.jeff-chen.com/centos-6-0-full-version-download-free-enterprise-linux-server-operating-system/&quot; title=&quot;分享到腾讯微博&quot; rel=&quot;nofollow&quot;&gt;腾讯微博&lt;/a&gt;, &lt;a href=&quot;http://share.xiaonei.com/share/buttonshare.do?link=http://www.jeff-chen.com/centos-6-0-full-version-download-free-enterprise-linux-server-operating-system/&amp;amp;title=CentOS%206.0%20%E6%AD%A3%E5%BC%8F%E7%89%88%E4%B8%8B%E8%BD%BD%20%E2%80%93%20%E5%85%8D%E8%B4%B9%E4%BC%81%E4%B8%9A%E7%BA%A7%20Linux%20%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%93%8D%E4%BD%9C%E7%B3%BB%E7%BB%9F&quot; title=&quot;分享到人人网&quot; rel=&quot;nofollow&quot;&gt;人人网&lt;/a&gt;, &lt;a href=&quot;http://www.kaixin001.com/repaste/share.php?url=http://www.jeff-chen.com/centos-6-0-full-version-download-free-enterprise-linux-server-operating-system/&amp;amp;title=CentOS%206.0%20%E6%AD%A3%E5%BC%8F%E7%89%88%E4%B8%8B%E8%BD%BD%20%E2%80%93%20%E5%85%8D%E8%B4%B9%E4%BC%81%E4%B8%9A%E7%BA%A7%20Linux%20%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%93%8D%E4%BD%9C%E7%B3%BB%E7%BB%9F&quot; title=&quot;分享到开心网&quot; rel=&quot;nofollow&quot;&gt;开心网&lt;/a&gt;, &lt;a href=&quot;http://www.douban.com/recommend/?url=http://www.jeff-chen.com/centos-6-0-full-version-download-free-enterprise-linux-server-operating-system/&amp;amp;title=CentOS%206.0%20%E6%AD%A3%E5%BC%8F%E7%89%88%E4%B8%8B%E8%BD%BD%20%E2%80%93%20%E5%85%8D%E8%B4%B9%E4%BC%81%E4%B8%9A%E7%BA%A7%20Linux%20%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%93%8D%E4%BD%9C%E7%B3%BB%E7%BB%9F&amp;amp;sel=&amp;amp;v=1&quot; title=&quot;分享到豆瓣推荐&quot; rel=&quot;nofollow&quot;&gt;豆瓣推荐&lt;/a&gt;, &lt;a href=&quot;http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=http://www.jeff-chen.com/centos-6-0-full-version-download-free-enterprise-linux-server-operating-system/&quot; title=&quot;分享到QQ空间&quot; rel=&quot;nofollow&quot;&gt;QQ空间&lt;/a&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/566190768/sharer/feedsky/s.gif?r=http://www.jeff-chen.com/centos-6-0-full-version-download-free-enterprise-linux-server-operating-system/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;</content:encoded><category>凑热闹</category><category>CentOS</category><category>Linux</category><category>下载</category><category>开源软件</category><category>操作系统</category><category>服务器</category><category>网站</category><category>软件</category><pubDate>Tue, 19 Jul 2011 17:09:58 +0800</pubDate><guid isPermaLink="false">tag:google.com,2005:reader/item/64723527ee0113c5</guid><dc:creator>Jeff</dc:creator><fs:srclink>http://www.jeff-chen.com/centos-6-0-full-version-download-free-enterprise-linux-server-operating-system/</fs:srclink><fs:srcfeed>http://www.google.com/reader/public/atom/user%2F04568479978967443037%2Flabel%2FSharer</fs:srcfeed><fs:itemid>feedsky/sharer/~8223687/566190768/6299489</fs:itemid></item><item><title>休假在外</title><link atom:type="text/html">http://www.jeff-chen.com/leave-out/</link><id xmlns="http://www.w3.org/2005/Atom" gr:original-id="http://www.jeff-chen.com/?p=1754">tag:google.com,2005:reader/item/e779f91c4d14c91e</id><content xmlns="http://www.w3.org/2005/Atom" xml:base="http://www.jeff-chen.com/" type="html">&lt;p&gt;最近休假在外，回复略有迟疑，请耐心等候，有问题可以邮件与我联系，谢谢！&lt;/p&gt;
© 2004-2011 &lt;a href=&quot;http://www.jeff-chen.com&quot;&gt;Jeff-Chen.Com&lt;/a&gt; 版权所有 |
&lt;a href=&quot;http://www.jeff-chen.com/leave-out/&quot;&gt;文章链接&lt;/a&gt; |
&lt;strong&gt;&lt;a href=&quot;http://www.jeff-chen.com/leave-out/#respond&quot;&gt;4 条评论&lt;/a&gt;&lt;/strong&gt;
&lt;br&gt;
关键词: &lt;a href=&quot;http://www.jeff-chen.com/tag/micobog/&quot; rel=&quot;tag&quot;&gt;微博&lt;/a&gt;
&lt;hr&gt;
收藏: &lt;a href=&quot;http://shuqian.qq.com/post?title=%E4%BC%91%E5%81%87%E5%9C%A8%E5%A4%96&amp;amp;uri=http://www.jeff-chen.com/leave-out/&quot; rel=&quot;nofollow&quot;&gt;QQ书签&lt;/a&gt;, &lt;a href=&quot;http://www.google.com/bookmarks/mark?op=edit&amp;amp;bkmk=http://www.jeff-chen.com/leave-out/&amp;amp;title=%E4%BC%91%E5%81%87%E5%9C%A8%E5%A4%96&quot; rel=&quot;nofollow&quot;&gt;Google书签&lt;/a&gt;, &lt;a href=&quot;http://cang.baidu.com/do/add?it=%E4%BC%91%E5%81%87%E5%9C%A8%E5%A4%96&amp;amp;iu=http://www.jeff-chen.com/leave-out/&amp;amp;dc=&amp;amp;fr=ien#nw=1&quot; rel=&quot;nofollow&quot;&gt;百度搜藏&lt;/a&gt; | 分享: &lt;a href=&quot;http://www.xianguo.com/service/submitdigg/?link=http://www.jeff-chen.com/leave-out/&amp;amp;title=%E4%BC%91%E5%81%87%E5%9C%A8%E5%A4%96&quot; rel=&quot;nofollow&quot;&gt;鲜果推荐&lt;/a&gt;, &lt;a href=&quot;http://v.t.sina.com.cn/share/share.php?title=%E4%BC%91%E5%81%87%E5%9C%A8%E5%A4%96%20-%20http://www.jeff-chen.com/leave-out/&quot; rel=&quot;nofollow&quot;&gt;新浪微博&lt;/a&gt;, &lt;a href=&quot;http://v.t.qq.com/share/share.php?title=%E4%BC%91%E5%81%87%E5%9C%A8%E5%A4%96&amp;amp;url=http://www.jeff-chen.com/leave-out/&quot; title=&quot;分享到腾讯微博&quot; rel=&quot;nofollow&quot;&gt;腾讯微博&lt;/a&gt;, &lt;a href=&quot;http://share.xiaonei.com/share/buttonshare.do?link=http://www.jeff-chen.com/leave-out/&amp;amp;title=%E4%BC%91%E5%81%87%E5%9C%A8%E5%A4%96&quot; title=&quot;分享到人人网&quot; rel=&quot;nofollow&quot;&gt;人人网&lt;/a&gt;, &lt;a href=&quot;http://www.kaixin001.com/repaste/share.php?url=http://www.jeff-chen.com/leave-out/&amp;amp;title=%E4%BC%91%E5%81%87%E5%9C%A8%E5%A4%96&quot; title=&quot;分享到开心网&quot; rel=&quot;nofollow&quot;&gt;开心网&lt;/a&gt;, &lt;a href=&quot;http://www.douban.com/recommend/?url=http://www.jeff-chen.com/leave-out/&amp;amp;title=%E4%BC%91%E5%81%87%E5%9C%A8%E5%A4%96&amp;amp;sel=&amp;amp;v=1&quot; title=&quot;分享到豆瓣推荐&quot; rel=&quot;nofollow&quot;&gt;豆瓣推荐&lt;/a&gt;, &lt;a href=&quot;http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=http://www.jeff-chen.com/leave-out/&quot; title=&quot;分享到QQ空间&quot; rel=&quot;nofollow&quot;&gt;QQ空间&lt;/a&gt;</content><author xmlns="http://www.w3.org/2005/Atom"><name>Jeff</name></author><source xmlns="http://www.w3.org/2005/Atom" gr:stream-id="feed/http://www.jeff-chen.com/feed/"><id>tag:google.com,2005:reader/feed/http://www.jeff-chen.com/feed/</id><title type="html">Jeff-Chen.Com</title><link rel="alternate" href="http://www.jeff-chen.com" type="text/html"></link></source><content:encoded>&lt;p&gt;最近休假在外，回复略有迟疑，请耐心等候，有问题可以邮件与我联系，谢谢！&lt;/p&gt;
© 2004-2011 &lt;a href=&quot;http://www.jeff-chen.com&quot;&gt;Jeff-Chen.Com&lt;/a&gt; 版权所有 |
&lt;a href=&quot;http://www.jeff-chen.com/leave-out/&quot;&gt;文章链接&lt;/a&gt; |
&lt;strong&gt;&lt;a href=&quot;http://www.jeff-chen.com/leave-out/#respond&quot;&gt;4 条评论&lt;/a&gt;&lt;/strong&gt;
&lt;br&gt;
关键词: &lt;a href=&quot;http://www.jeff-chen.com/tag/micobog/&quot; rel=&quot;tag&quot;&gt;微博&lt;/a&gt;
&lt;hr&gt;
收藏: &lt;a href=&quot;http://shuqian.qq.com/post?title=%E4%BC%91%E5%81%87%E5%9C%A8%E5%A4%96&amp;amp;uri=http://www.jeff-chen.com/leave-out/&quot; rel=&quot;nofollow&quot;&gt;QQ书签&lt;/a&gt;, &lt;a href=&quot;http://www.google.com/bookmarks/mark?op=edit&amp;amp;bkmk=http://www.jeff-chen.com/leave-out/&amp;amp;title=%E4%BC%91%E5%81%87%E5%9C%A8%E5%A4%96&quot; rel=&quot;nofollow&quot;&gt;Google书签&lt;/a&gt;, &lt;a href=&quot;http://cang.baidu.com/do/add?it=%E4%BC%91%E5%81%87%E5%9C%A8%E5%A4%96&amp;amp;iu=http://www.jeff-chen.com/leave-out/&amp;amp;dc=&amp;amp;fr=ien#nw=1&quot; rel=&quot;nofollow&quot;&gt;百度搜藏&lt;/a&gt; | 分享: &lt;a href=&quot;http://www.xianguo.com/service/submitdigg/?link=http://www.jeff-chen.com/leave-out/&amp;amp;title=%E4%BC%91%E5%81%87%E5%9C%A8%E5%A4%96&quot; rel=&quot;nofollow&quot;&gt;鲜果推荐&lt;/a&gt;, &lt;a href=&quot;http://v.t.sina.com.cn/share/share.php?title=%E4%BC%91%E5%81%87%E5%9C%A8%E5%A4%96%20-%20http://www.jeff-chen.com/leave-out/&quot; rel=&quot;nofollow&quot;&gt;新浪微博&lt;/a&gt;, &lt;a href=&quot;http://v.t.qq.com/share/share.php?title=%E4%BC%91%E5%81%87%E5%9C%A8%E5%A4%96&amp;amp;url=http://www.jeff-chen.com/leave-out/&quot; title=&quot;分享到腾讯微博&quot; rel=&quot;nofollow&quot;&gt;腾讯微博&lt;/a&gt;, &lt;a href=&quot;http://share.xiaonei.com/share/buttonshare.do?link=http://www.jeff-chen.com/leave-out/&amp;amp;title=%E4%BC%91%E5%81%87%E5%9C%A8%E5%A4%96&quot; title=&quot;分享到人人网&quot; rel=&quot;nofollow&quot;&gt;人人网&lt;/a&gt;, &lt;a href=&quot;http://www.kaixin001.com/repaste/share.php?url=http://www.jeff-chen.com/leave-out/&amp;amp;title=%E4%BC%91%E5%81%87%E5%9C%A8%E5%A4%96&quot; title=&quot;分享到开心网&quot; rel=&quot;nofollow&quot;&gt;开心网&lt;/a&gt;, &lt;a href=&quot;http://www.douban.com/recommend/?url=http://www.jeff-chen.com/leave-out/&amp;amp;title=%E4%BC%91%E5%81%87%E5%9C%A8%E5%A4%96&amp;amp;sel=&amp;amp;v=1&quot; title=&quot;分享到豆瓣推荐&quot; rel=&quot;nofollow&quot;&gt;豆瓣推荐&lt;/a&gt;, &lt;a href=&quot;http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=http://www.jeff-chen.com/leave-out/&quot; title=&quot;分享到QQ空间&quot; rel=&quot;nofollow&quot;&gt;QQ空间&lt;/a&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/566190769/sharer/feedsky/s.gif?r=http://www.jeff-chen.com/leave-out/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;</content:encoded><category>微博</category><pubDate>Sun, 10 Jul 2011 14:01:59 +0800</pubDate><guid isPermaLink="false">tag:google.com,2005:reader/item/e779f91c4d14c91e</guid><dc:creator>Jeff</dc:creator><fs:srclink>http://www.jeff-chen.com/leave-out/</fs:srclink><fs:srcfeed>http://www.google.com/reader/public/atom/user%2F04568479978967443037%2Flabel%2FSharer</fs:srcfeed><fs:itemid>feedsky/sharer/~8223687/566190769/6299489</fs:itemid></item></channel></rss>
