<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>CODIGG &#187; PHP</title>
	<atom:link href="http://www.codigg.com/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codigg.com</link>
	<description>关注互联网，关注云计算，关注生活</description>
	<lastBuildDate>Tue, 31 Aug 2010 03:04:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>搞清楚php中$_REQUEST变量的问题，备忘一下</title>
		<link>http://www.codigg.com/2010/08/php-request-cookie/</link>
		<comments>http://www.codigg.com/2010/08/php-request-cookie/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 07:42:53 +0000</pubDate>
		<dc:creator>Codigg</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[cookie]]></category>
		<category><![CDATA[request]]></category>

		<guid isPermaLink="false">http://www.codigg.com/?p=800</guid>
		<description><![CDATA[做了一个类似开心/校内/facebook开放服务的rest 接口，即：用http请求，并将请求参数用密钥加密后传输。

服务端进行校验的代码如下：



?View Code PHPdefine&#40;&#34;KEY&#34;,&#34;密钥&#34;&#41;;

&#160;

<span class="readmore"><a href="http://www.codigg.com/2010/08/php-request-cookie/" title="搞清楚php中$_REQUEST变量的问题，备忘一下">阅读全文——共1024字</a></span><h3>相关文章</h3><ul><li><a href="http://www.codigg.com/2010/04/lighttpd-expect-100-417-continue/" title="lighttpd不支持Expect: 100-continue的解决办法 2010.04.13">lighttpd不支持Expect: 100-continue的解决办法</a>(4)</li>
<li><a href="http://www.codigg.com/2010/03/php-rrdtool-install/" title="安装php rrdtool 2010.03.24">安装php rrdtool</a>(3)</li>
<li><a href="http://www.codigg.com/2010/01/php-aes-java-encrypt-decrypt/" title="php版的AES算法（可与java兼容） 2010.01.21">php版的AES算法（可与java兼容）</a>(1)</li>
<li><a href="http://www.codigg.com/2009/09/php-curl-download-filename/" title="php curl下载文件时保存原文件名 2009.09.6">php curl下载文件时保存原文件名</a>(1)</li>
<li><a href="http://www.codigg.com/2009/05/7-free-powerful-file-managers-1/" title="7款php/ajax/js实现的免费web文件管理工具（上） 2009.05.26">7款php/ajax/js实现的免费web文件管理工具（上）</a>(0)</li>
</ul><h3>最近评论</h3><ul><li><a class="commentor" href="http://www.wordpress.la" >WordPress啦</a> : <a class="comment_content" href="http://www.codigg.com/2010/08/php-request-cookie/#comment-92609" title="View the entire comment by WordPress啦" >不会php的飘过</a></li>
<li><a class="commentor" href="http://lingyired.com" >灵亦</a> : <a class="comment_content" href="http://www.codigg.com/2010/08/php-request-cookie/#comment-92172" title="View the entire comment by 灵亦" >暂时看不懂</a></li>
<li><a class="commentor" href="http://www.christianlouboutinsmall.com" >christian louboutin</a> : <a class="comment_content" href="http://www.codigg.com/2010/08/php-request-cookie/#comment-91788" title="View the entire comment by christian louboutin" >谢谢博主分享，学习了</a></li>
</ul>]]></description>
		<wfw:commentRss>http://www.codigg.com/2010/08/php-request-cookie/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>lighttpd不支持Expect: 100-continue的解决办法</title>
		<link>http://www.codigg.com/2010/04/lighttpd-expect-100-417-continue/</link>
		<comments>http://www.codigg.com/2010/04/lighttpd-expect-100-417-continue/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 05:46:32 +0000</pubDate>
		<dc:creator>Codigg</dc:creator>
				<category><![CDATA[Linux/Server]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[JAVA]]></category>
		<category><![CDATA[lighttpd]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.codigg.com/?p=710</guid>
		<description><![CDATA[由于lighttpd1.4.21之前的版本不支持Expect: 100-continue，所以有可能访问出现“HTTP/1.1 417 Expectation Failed”等错误提示，搜集整理了很多解决方法，如下：

1. 升级到 lighttpd 1.5.x，那应该没有这个问题了

2. （推荐）升级到 lighttpd 1.4.21 或以上版本（即最新的realease版本），在配置文件中加上一句



?View Code BASHserver.reject-expect-100-with-417=&#34;disabled&#34;

<span class="readmore"><a href="http://www.codigg.com/2010/04/lighttpd-expect-100-417-continue/" title="lighttpd不支持Expect: 100-continue的解决办法">阅读全文——共564字</a></span><h3>相关文章</h3><ul><li><a href="http://www.codigg.com/2010/01/php-aes-java-encrypt-decrypt/" title="php版的AES算法（可与java兼容） 2010.01.21">php版的AES算法（可与java兼容）</a>(1)</li>
<li><a href="http://www.codigg.com/2009/09/php-curl-download-filename/" title="php curl下载文件时保存原文件名 2009.09.6">php curl下载文件时保存原文件名</a>(1)</li>
<li><a href="http://www.codigg.com/2010/08/php-request-cookie/" title="搞清楚php中$_REQUEST变量的问题，备忘一下 2010.08.16">搞清楚php中$_REQUEST变量的问题，备忘一下</a>(3)</li>
<li><a href="http://www.codigg.com/2010/07/java-jmap-eclipse-memory-analyzer/" title="Java程序内存分析:JMap与Eclipse Memory Analyzer 2010.07.27">Java程序内存分析:JMap与Eclipse Memory Analyzer</a>(0)</li>
<li><a href="http://www.codigg.com/2010/04/ftp-curl-backup-shell/" title="下载远程ftp文件备份到本地的脚本 2010.04.7">下载远程ftp文件备份到本地的脚本</a>(4)</li>
<li><a href="http://www.codigg.com/2010/03/php-rrdtool-install/" title="安装php rrdtool 2010.03.24">安装php rrdtool</a>(3)</li>
<li><a href="http://www.codigg.com/2010/03/web-server-header-apache-lighttpd-nginx/" title="伪装WEB服务器(apache/lighttpd/nginx) 2010.03.20">伪装WEB服务器(apache/lighttpd/nginx)</a>(0)</li>
<li><a href="http://www.codigg.com/2009/12/qinghuaci-java/" title="青花瓷 java版 2009.12.30">青花瓷 java版</a>(1)</li>
<li><a href="http://www.codigg.com/2009/12/shell-curl-ftp-upload-download-delete/" title="shell命令：使用curl操作ftp（上传、下载、删除等） 2009.12.3">shell命令：使用curl操作ftp（上传、下载、删除等）</a>(2)</li>
<li><a href="http://www.codigg.com/2009/09/proxy-server-real-ip-lighttpd-apache/" title="proxy server后的apache如何获取用户真实IP 2009.09.3">proxy server后的apache如何获取用户真实IP</a>(0)</li>
</ul><h3>最近评论</h3><ul><li><a class="commentor" href="http://www.codigg.com" >Codigg</a> : <a class="comment_content" href="http://www.codigg.com/2010/04/lighttpd-expect-100-417-continue/#comment-84917" title="View the entire comment by Codigg" >我晕，这个是成人网站! -_-|||</a></li>
<li><a class="commentor" href="http://www.ddsofts.com" >john</a> : <a class="comment_content" href="http://www.codigg.com/2010/04/lighttpd-expect-100-417-continue/#comment-84911" title="View the entire comment by john" >已做好贵站链接，以后常来串门啊</a></li>
<li><a class="commentor" href="http://caoliu888.tk/" >草榴最新地址</a> : <a class="comment_content" href="http://www.codigg.com/2010/04/lighttpd-expect-100-417-continue/#comment-84900" title="View the entire comment by 草榴最新地址" >主题不错哈</a></li>
<li><a class="commentor" href="http://www.se7ens.cn" >老七</a> : <a class="comment_content" href="http://www.codigg.com/2010/04/lighttpd-expect-100-417-continue/#comment-84891" title="View the entire comment by 老七" >技术文。。我感觉一头雾水。。</a></li>
</ul>]]></description>
		<wfw:commentRss>http://www.codigg.com/2010/04/lighttpd-expect-100-417-continue/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>安装php rrdtool</title>
		<link>http://www.codigg.com/2010/03/php-rrdtool-install/</link>
		<comments>http://www.codigg.com/2010/03/php-rrdtool-install/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 14:26:18 +0000</pubDate>
		<dc:creator>Codigg</dc:creator>
				<category><![CDATA[Linux/Server]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[rrdtool]]></category>

		<guid isPermaLink="false">http://www.codigg.com/?p=583</guid>
		<description><![CDATA[RRDTool 是由Tobias Oetiker 开发的自由软件，它使用RRD （ Round Robin Database ）作为存储格式， Round robin 是一种处理定量数据以及当前元素指针的技术。rrdtool主要用来跟踪对象变化情况，用来生成这些变化的走势。如服务器状态、股票、天气温度等。

简单写一下php_rrdtool的安装方法



?View Code BASH# 下载

wget http://oss.oetiker.ch/rrdtool/pub/contrib/php_rrdtool.tar.gz

<span class="readmore"><a href="http://www.codigg.com/2010/03/php-rrdtool-install/" title="安装php rrdtool">阅读全文——共811字</a></span><h3>相关文章</h3><ul><li><a href="http://www.codigg.com/2010/08/php-request-cookie/" title="搞清楚php中$_REQUEST变量的问题，备忘一下 2010.08.16">搞清楚php中$_REQUEST变量的问题，备忘一下</a>(3)</li>
<li><a href="http://www.codigg.com/2010/04/lighttpd-expect-100-417-continue/" title="lighttpd不支持Expect: 100-continue的解决办法 2010.04.13">lighttpd不支持Expect: 100-continue的解决办法</a>(4)</li>
<li><a href="http://www.codigg.com/2010/01/php-aes-java-encrypt-decrypt/" title="php版的AES算法（可与java兼容） 2010.01.21">php版的AES算法（可与java兼容）</a>(1)</li>
<li><a href="http://www.codigg.com/2009/09/php-curl-download-filename/" title="php curl下载文件时保存原文件名 2009.09.6">php curl下载文件时保存原文件名</a>(1)</li>
<li><a href="http://www.codigg.com/2009/05/7-free-powerful-file-managers-1/" title="7款php/ajax/js实现的免费web文件管理工具（上） 2009.05.26">7款php/ajax/js实现的免费web文件管理工具（上）</a>(0)</li>
</ul><h3>最近评论</h3><ul><li><a class="commentor" href="" >pipa</a> : <a class="comment_content" href="http://www.codigg.com/2010/03/php-rrdtool-install/#comment-85211" title="View the entire comment by pipa" >rrdtool应该不支持php-cgi方式。。。搞了半天没搞定</a></li>
<li><a class="commentor" href="http://www.codigg.com" >Codigg</a> : <a class="comment_content" href="http://www.codigg.com/2010/03/php-rrdtool-install/#comment-84150" title="View the entire comment by Codigg" >这几天比较忙，回头再详细介绍一下后面的使用。出差半年，在博客上忽悠大家很多次了，希望这次能兑现~~</a></li>
<li><a class="commentor" href="" >路过</a> : <a class="comment_content" href="http://www.codigg.com/2010/03/php-rrdtool-install/#comment-83755" title="View the entire comment by 路过" >这个好用，谢谢了~</a></li>
</ul>]]></description>
		<wfw:commentRss>http://www.codigg.com/2010/03/php-rrdtool-install/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>php版的AES算法（可与java兼容）</title>
		<link>http://www.codigg.com/2010/01/php-aes-java-encrypt-decrypt/</link>
		<comments>http://www.codigg.com/2010/01/php-aes-java-encrypt-decrypt/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 14:14:13 +0000</pubDate>
		<dc:creator>Codigg</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[aes]]></category>
		<category><![CDATA[encrypt]]></category>
		<category><![CDATA[JAVA]]></category>

		<guid isPermaLink="false">http://www.codigg.com/?p=568</guid>
		<description><![CDATA[直接上代码吧



?View Code PHPclass CryptAES&#123;

    private $cipher     = &#34;rijndael-128&#34;;

    private $mode       = &#34;cbc&#34;;

<span class="readmore"><a href="http://www.codigg.com/2010/01/php-aes-java-encrypt-decrypt/" title="php版的AES算法（可与java兼容）">阅读全文——共901字</a></span><h3>相关文章</h3><ul><li><a href="http://www.codigg.com/2010/04/lighttpd-expect-100-417-continue/" title="lighttpd不支持Expect: 100-continue的解决办法 2010.04.13">lighttpd不支持Expect: 100-continue的解决办法</a>(4)</li>
<li><a href="http://www.codigg.com/2010/08/php-request-cookie/" title="搞清楚php中$_REQUEST变量的问题，备忘一下 2010.08.16">搞清楚php中$_REQUEST变量的问题，备忘一下</a>(3)</li>
<li><a href="http://www.codigg.com/2010/07/java-jmap-eclipse-memory-analyzer/" title="Java程序内存分析:JMap与Eclipse Memory Analyzer 2010.07.27">Java程序内存分析:JMap与Eclipse Memory Analyzer</a>(0)</li>
<li><a href="http://www.codigg.com/2010/03/php-rrdtool-install/" title="安装php rrdtool 2010.03.24">安装php rrdtool</a>(3)</li>
<li><a href="http://www.codigg.com/2009/12/qinghuaci-java/" title="青花瓷 java版 2009.12.30">青花瓷 java版</a>(1)</li>
<li><a href="http://www.codigg.com/2009/09/php-curl-download-filename/" title="php curl下载文件时保存原文件名 2009.09.6">php curl下载文件时保存原文件名</a>(1)</li>
<li><a href="http://www.codigg.com/2009/08/java-exception-code-method/" title="你的java代码够土吗？ 2009.08.10">你的java代码够土吗？</a>(0)</li>
<li><a href="http://www.codigg.com/2009/05/7-free-powerful-file-managers-1/" title="7款php/ajax/js实现的免费web文件管理工具（上） 2009.05.26">7款php/ajax/js实现的免费web文件管理工具（上）</a>(0)</li>
</ul><h3>最近评论</h3><ul></ul>]]></description>
		<wfw:commentRss>http://www.codigg.com/2010/01/php-aes-java-encrypt-decrypt/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>php curl下载文件时保存原文件名</title>
		<link>http://www.codigg.com/2009/09/php-curl-download-filename/</link>
		<comments>http://www.codigg.com/2009/09/php-curl-download-filename/#comments</comments>
		<pubDate>Sun, 06 Sep 2009 02:21:06 +0000</pubDate>
		<dc:creator>Codigg</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[curl]]></category>

		<guid isPermaLink="false">http://www.codigg.com/?p=522</guid>
		<description><![CDATA[假设down.php的主要内容如下：



?View Code PHPheader&#40;&#34;Location: http://www.codigg.com/download/src-name.rar&#34;&#41;;

exit;



<span class="readmore"><a href="http://www.codigg.com/2009/09/php-curl-download-filename/" title="php curl下载文件时保存原文件名">阅读全文——共710字</a></span><h3>相关文章</h3><ul><li><a href="http://www.codigg.com/2010/04/lighttpd-expect-100-417-continue/" title="lighttpd不支持Expect: 100-continue的解决办法 2010.04.13">lighttpd不支持Expect: 100-continue的解决办法</a>(4)</li>
<li><a href="http://www.codigg.com/2010/08/php-request-cookie/" title="搞清楚php中$_REQUEST变量的问题，备忘一下 2010.08.16">搞清楚php中$_REQUEST变量的问题，备忘一下</a>(3)</li>
<li><a href="http://www.codigg.com/2010/04/ftp-curl-backup-shell/" title="下载远程ftp文件备份到本地的脚本 2010.04.7">下载远程ftp文件备份到本地的脚本</a>(4)</li>
<li><a href="http://www.codigg.com/2010/03/php-rrdtool-install/" title="安装php rrdtool 2010.03.24">安装php rrdtool</a>(3)</li>
<li><a href="http://www.codigg.com/2010/01/php-aes-java-encrypt-decrypt/" title="php版的AES算法（可与java兼容） 2010.01.21">php版的AES算法（可与java兼容）</a>(1)</li>
<li><a href="http://www.codigg.com/2009/12/shell-curl-ftp-upload-download-delete/" title="shell命令：使用curl操作ftp（上传、下载、删除等） 2009.12.3">shell命令：使用curl操作ftp（上传、下载、删除等）</a>(2)</li>
<li><a href="http://www.codigg.com/2009/05/7-free-powerful-file-managers-1/" title="7款php/ajax/js实现的免费web文件管理工具（上） 2009.05.26">7款php/ajax/js实现的免费web文件管理工具（上）</a>(0)</li>
</ul><h3>最近评论</h3><ul></ul>]]></description>
		<wfw:commentRss>http://www.codigg.com/2009/09/php-curl-download-filename/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>7款php/ajax/js实现的免费web文件管理工具（上）</title>
		<link>http://www.codigg.com/2009/05/7-free-powerful-file-managers-1/</link>
		<comments>http://www.codigg.com/2009/05/7-free-powerful-file-managers-1/#comments</comments>
		<pubDate>Tue, 26 May 2009 05:58:36 +0000</pubDate>
		<dc:creator>Codigg</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.codigg.com/?p=127</guid>
		<description><![CDATA[<a href="http://www.codigg.com/2009/05/7-free-powerful-file-managers-1/"><img align="left" hspace="5" width="150" height="150" src="http://www.codigg.com/wp-content/uploads/2009/05/file-manager4-150x150.jpg" class="alignleft wp-post-image tfe" alt="file-manager4" title="file-manager4" /></a>1. AjaXplorer



AjaXplorer安装简单，无需数据库，只需要php（4或者5）环境，就能用它通过浏览器管理远程服务器上的文件。用来进行文件管理/共享，相册管理、代码浏览和编辑等非常方便。一些功能特性：



重命名/复制/移动/删除/下载文件或文件夹

<span class="readmore"><a href="http://www.codigg.com/2009/05/7-free-powerful-file-managers-1/" title="7款php/ajax/js实现的免费web文件管理工具（上）">阅读全文——共895字</a></span><h3>相关文章</h3><ul><li><a href="http://www.codigg.com/2010/08/php-request-cookie/" title="搞清楚php中$_REQUEST变量的问题，备忘一下 2010.08.16">搞清楚php中$_REQUEST变量的问题，备忘一下</a>(3)</li>
<li><a href="http://www.codigg.com/2010/04/lighttpd-expect-100-417-continue/" title="lighttpd不支持Expect: 100-continue的解决办法 2010.04.13">lighttpd不支持Expect: 100-continue的解决办法</a>(4)</li>
<li><a href="http://www.codigg.com/2010/03/php-rrdtool-install/" title="安装php rrdtool 2010.03.24">安装php rrdtool</a>(3)</li>
<li><a href="http://www.codigg.com/2010/01/php-aes-java-encrypt-decrypt/" title="php版的AES算法（可与java兼容） 2010.01.21">php版的AES算法（可与java兼容）</a>(1)</li>
<li><a href="http://www.codigg.com/2009/09/php-curl-download-filename/" title="php curl下载文件时保存原文件名 2009.09.6">php curl下载文件时保存原文件名</a>(1)</li>
</ul><h3>最近评论</h3><ul></ul>]]></description>
		<wfw:commentRss>http://www.codigg.com/2009/05/7-free-powerful-file-managers-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
