<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>JOM_CH's HOME - </title><link>category/158456.aspx</link><description /><dc:language>zh-CN</dc:language><lastUpdateTime>Wed, 02 Jul 2008 16:51:32 GMT</lastUpdateTime><ttl>60</ttl><item><dc:creator>jom_ch</dc:creator><title>windows下用apache+.htacess给目录加密</title><link>http://blog.csdn.net/jom_ch/archive/2008/07/02/2605774.aspx</link><pubDate>Wed, 02 Jul 2008 16:52:00 GMT</pubDate><guid>http://blog.csdn.net/jom_ch/archive/2008/07/02/2605774.aspx</guid><wfw:comment>comments/2605774.aspx</wfw:comment><comments>http://blog.csdn.net/jom_ch/archive/2008/07/02/2605774.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/2605774.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2605774</trackback:ping><description>AllowOverride&lt;img src ="aggbug/2605774.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>jom_ch</dc:creator><title>php AES128加密解密类的使用</title><link>http://blog.csdn.net/jom_ch/archive/2008/06/26/2588438.aspx</link><pubDate>Thu, 26 Jun 2008 13:05:00 GMT</pubDate><guid>http://blog.csdn.net/jom_ch/archive/2008/06/26/2588438.aspx</guid><wfw:comment>comments/2588438.aspx</wfw:comment><comments>http://blog.csdn.net/jom_ch/archive/2008/06/26/2588438.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/2588438.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2588438</trackback:ping><description>php,AES128&lt;img src ="aggbug/2588438.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>jom_ch</dc:creator><title>使用Apache的IndexOptions FancyIndexing选项</title><link>http://blog.csdn.net/jom_ch/archive/2008/06/25/2585509.aspx</link><pubDate>Wed, 25 Jun 2008 14:35:00 GMT</pubDate><guid>http://blog.csdn.net/jom_ch/archive/2008/06/25/2585509.aspx</guid><wfw:comment>comments/2585509.aspx</wfw:comment><comments>http://blog.csdn.net/jom_ch/archive/2008/06/25/2585509.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/2585509.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2585509</trackback:ping><description>IndexOptions FancyIndexing,AddIcon&lt;img src ="aggbug/2585509.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>jom_ch</dc:creator><title>windows+apache+mysql+php配置手记</title><link>http://blog.csdn.net/jom_ch/archive/2008/06/25/2584210.aspx</link><pubDate>Wed, 25 Jun 2008 09:05:00 GMT</pubDate><guid>http://blog.csdn.net/jom_ch/archive/2008/06/25/2584210.aspx</guid><wfw:comment>comments/2584210.aspx</wfw:comment><comments>http://blog.csdn.net/jom_ch/archive/2008/06/25/2584210.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/2584210.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2584210</trackback:ping><description>windows+apache+mysql+php配置手记&lt;img src ="aggbug/2584210.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>jom_ch</dc:creator><title>php异或加密解密算法的实现</title><link>http://blog.csdn.net/jom_ch/archive/2008/06/24/2583816.aspx</link><pubDate>Tue, 24 Jun 2008 22:32:00 GMT</pubDate><guid>http://blog.csdn.net/jom_ch/archive/2008/06/24/2583816.aspx</guid><wfw:comment>comments/2583816.aspx</wfw:comment><comments>http://blog.csdn.net/jom_ch/archive/2008/06/24/2583816.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/2583816.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2583816</trackback:ping><description>&amp;lt;p&amp;gt;今天工作中用到了异或加密解密算法,以前没有接触过,就小研究了一下,发现是一项比较简单和落后的加密技术. 异或加密是根据给出的密钥与明文的字符串逐字节进行异或(^)运算,得到密文,解密是相同的过程. 下面是实现异或加密解密的函数: &amp;lt;/p&amp;gt;&amp;lt;p&amp;gt;&amp;amp;lt;?php&amp;lt;br /&amp;gt;/*string $str,字符串string $key,密钥*/&amp;lt;br /&amp;gt;function xor_enc($str,$key){&amp;amp;nbsp;&amp;lt;br /&amp;gt;$crytxt = '';&amp;amp;nbsp;&amp;lt;br /&amp;gt;for($i=0;$i&amp;amp;lt;strlen($str);$i++){&amp;amp;nbsp;&amp;amp;nbsp;&amp;lt;br /&amp;gt;$crytxt .= $str[$i] ^ $key;&amp;amp;nbsp;&amp;lt;br /&amp;gt;}&amp;amp;nbsp;&amp;lt;br /&amp;gt;return $crytxt;&amp;lt;br /&amp;gt;} &amp;lt;br /&amp;gt;$str = "北京欢迎你!"; &amp;lt&lt;img src ="aggbug/2583816.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>jom_ch</dc:creator><title>PHP多语言系统的一种实现方式</title><link>http://blog.csdn.net/jom_ch/archive/2008/06/21/2573882.aspx</link><pubDate>Sat, 21 Jun 2008 21:50:00 GMT</pubDate><guid>http://blog.csdn.net/jom_ch/archive/2008/06/21/2573882.aspx</guid><wfw:comment>comments/2573882.aspx</wfw:comment><comments>http://blog.csdn.net/jom_ch/archive/2008/06/21/2573882.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/2573882.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2573882</trackback:ping><description>多语言系统,php&lt;img src ="aggbug/2573882.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>jom_ch</dc:creator><title>lamp环境搭建手记</title><link>http://blog.csdn.net/jom_ch/archive/2008/03/07/2157201.aspx</link><pubDate>Fri, 07 Mar 2008 20:14:00 GMT</pubDate><guid>http://blog.csdn.net/jom_ch/archive/2008/03/07/2157201.aspx</guid><wfw:comment>comments/2157201.aspx</wfw:comment><comments>http://blog.csdn.net/jom_ch/archive/2008/03/07/2157201.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/2157201.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2157201</trackback:ping><description>lamp配置,lamp安装,mysql,rpm&lt;img src ="aggbug/2157201.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>jom_ch</dc:creator><title>DOCTYPE用法详解</title><link>http://blog.csdn.net/jom_ch/archive/2007/09/04/1772165.aspx</link><pubDate>Tue, 04 Sep 2007 19:13:00 GMT</pubDate><guid>http://blog.csdn.net/jom_ch/archive/2007/09/04/1772165.aspx</guid><wfw:comment>comments/1772165.aspx</wfw:comment><comments>http://blog.csdn.net/jom_ch/archive/2007/09/04/1772165.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1772165.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1772165</trackback:ping><description>DOCTYPE&lt;img src ="aggbug/1772165.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>jom_ch</dc:creator><title>简单javascript计算器</title><link>http://blog.csdn.net/jom_ch/archive/2007/05/04/1596534.aspx</link><pubDate>Fri, 04 May 2007 22:39:00 GMT</pubDate><guid>http://blog.csdn.net/jom_ch/archive/2007/05/04/1596534.aspx</guid><wfw:comment>comments/1596534.aspx</wfw:comment><comments>http://blog.csdn.net/jom_ch/archive/2007/05/04/1596534.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1596534.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1596534</trackback:ping><description>简单javascript计算器&lt;img src ="aggbug/1596534.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>jom_ch</dc:creator><title>js简单窗口拖动</title><link>http://blog.csdn.net/jom_ch/archive/2007/04/16/1566631.aspx</link><pubDate>Mon, 16 Apr 2007 15:26:00 GMT</pubDate><guid>http://blog.csdn.net/jom_ch/archive/2007/04/16/1566631.aspx</guid><wfw:comment>comments/1566631.aspx</wfw:comment><comments>http://blog.csdn.net/jom_ch/archive/2007/04/16/1566631.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1566631.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1566631</trackback:ping><description>js简单窗口拖动&lt;img src ="aggbug/1566631.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>jom_ch</dc:creator><title>无刷新自娱自乐单机聊天室Version1.0</title><link>http://blog.csdn.net/jom_ch/archive/2007/04/16/1566362.aspx</link><pubDate>Mon, 16 Apr 2007 11:56:00 GMT</pubDate><guid>http://blog.csdn.net/jom_ch/archive/2007/04/16/1566362.aspx</guid><wfw:comment>comments/1566362.aspx</wfw:comment><comments>http://blog.csdn.net/jom_ch/archive/2007/04/16/1566362.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1566362.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1566362</trackback:ping><description>聊天室,js&lt;img src ="aggbug/1566362.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>jom_ch</dc:creator><title>Ajax中XML和JSON格式的优劣比较</title><link>http://blog.csdn.net/jom_ch/archive/2007/03/27/1543137.aspx</link><pubDate>Tue, 27 Mar 2007 18:22:00 GMT</pubDate><guid>http://blog.csdn.net/jom_ch/archive/2007/03/27/1543137.aspx</guid><wfw:comment>comments/1543137.aspx</wfw:comment><comments>http://blog.csdn.net/jom_ch/archive/2007/03/27/1543137.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1543137.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1543137</trackback:ping><description>xml,json&lt;img src ="aggbug/1543137.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>jom_ch</dc:creator><title>关于网络投票</title><link>http://blog.csdn.net/jom_ch/archive/2007/01/06/1475991.aspx</link><pubDate>Sat, 06 Jan 2007 23:42:00 GMT</pubDate><guid>http://blog.csdn.net/jom_ch/archive/2007/01/06/1475991.aspx</guid><wfw:comment>comments/1475991.aspx</wfw:comment><comments>http://blog.csdn.net/jom_ch/archive/2007/01/06/1475991.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1475991.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1475991</trackback:ping><description>网络投票&lt;img src ="aggbug/1475991.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>jom_ch</dc:creator><title>window.event 对象详解</title><link>http://blog.csdn.net/jom_ch/archive/2006/10/12/1332117.aspx</link><pubDate>Thu, 12 Oct 2006 18:49:00 GMT</pubDate><guid>http://blog.csdn.net/jom_ch/archive/2006/10/12/1332117.aspx</guid><wfw:comment>comments/1332117.aspx</wfw:comment><comments>http://blog.csdn.net/jom_ch/archive/2006/10/12/1332117.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1332117.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1332117</trackback:ping><description>window.event 对象详解&lt;img src ="aggbug/1332117.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>jom_ch</dc:creator><title>PHP下对缓冲区的控制</title><link>http://blog.csdn.net/jom_ch/archive/2006/10/09/1327490.aspx</link><pubDate>Mon, 09 Oct 2006 17:22:00 GMT</pubDate><guid>http://blog.csdn.net/jom_ch/archive/2006/10/09/1327490.aspx</guid><wfw:comment>comments/1327490.aspx</wfw:comment><comments>http://blog.csdn.net/jom_ch/archive/2006/10/09/1327490.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1327490.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1327490</trackback:ping><description>PHP下对缓冲区的控制&lt;img src ="aggbug/1327490.aspx" width = "1" height = "1" /&gt;</description></item></channel></rss>