<?xml version='1.0' encoding='UTF-8'?>
<rss version='2.0' xmlns:dc='http://purl.org/dc/elements/1.1/'>
<channel>
<title>CSDN技术网摘 -- wz.csdn.net(PHP)</title>
<description>CSDN技术网摘 -- wz.csdn.net(PHP)</description>
<link>http://wz.csdn.net/tag-rss/PHP/</link>
<generator>CSDN网摘 (http://wz.csdn.net)</generator>
<language>zh-cn</language>
<docs>CSDN网摘 包罗技术精华</docs>
<item>
<title>''PHP从入门到精通&gt;随书视频及源码下载 要的进</title>
<link>http://topic.csdn.net/u/20090702/10/8dddaf00-9788-4919-9d7b-180b1d69c658.html?96427</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20090702/10/8dddaf00-9788-4919-9d7b-180b1d69c658.html?96427</guid>
<category>PHP</category>
<pubDate>Sat, 04 Jul 2009 05:55:13 GMT</pubDate>
<description>入门到精通</description>
<dc:creator>zhubaoyu</dc:creator>
</item>
<item>
<title>warning 可以改成抛出异常么</title>
<link>http://topic.csdn.net/u/20090625/13/dcb97bd1-76d0-4e29-a0dc-c82f9c7eeb1b.html?30584</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20090625/13/dcb97bd1-76d0-4e29-a0dc-c82f9c7eeb1b.html?30584</guid>
<category>php</category>
<pubDate>Sat, 27 Jun 2009 04:11:22 GMT</pubDate>
<description></description>
<dc:creator>Kyshin</dc:creator>
</item>
<item>
<title>#41030 : intval could not handle numbers bigger than 2,147,483,647</title>
<link>http://www.mombu.com/php/php/t-41030-intval-could-not-handle-numbers-bigger-than-2147483647-1081063.html</link>
<guid isPermaLink="true">http://www.mombu.com/php/php/t-41030-intval-could-not-handle-numbers-bigger-than-2147483647-1081063.html</guid>
<category>intval,php</category>
<pubDate>Fri, 26 Jun 2009 05:13:16 GMT</pubDate>
<description>intval could not handle numbers bigger than 2,147,483,647</description>
<dc:creator>AppZ</dc:creator>
</item>
<item>
<title>疯狂Ajax讲义——Prototype/jQuery DWR Spring Hibernate整合开发</title>
<link>http://book.csdn.net/bookfiles/1020/index.html</link>
<guid isPermaLink="true">http://book.csdn.net/bookfiles/1020/index.html</guid>
<category>php</category>
<pubDate>Mon, 22 Jun 2009 15:13:24 GMT</pubDate>
<description></description>
<dc:creator>coast06</dc:creator>
</item>
<item>
<title>精通PHP5应用开发</title>
<link>http://book.csdn.net/bookfiles/322/index.html</link>
<guid isPermaLink="true">http://book.csdn.net/bookfiles/322/index.html</guid>
<category>php</category>
<pubDate>Mon, 22 Jun 2009 02:53:56 GMT</pubDate>
<description></description>
<dc:creator>allen_net</dc:creator>
</item>
<item>
<title>你不了解PHP的10件事情！</title>
<link>http://student.csdn.net/space.php?uid=2331&amp;do=blog&amp;id=5498</link>
<guid isPermaLink="true">http://student.csdn.net/space.php?uid=2331&amp;do=blog&amp;id=5498</guid>
<category>php</category>
<pubDate>Mon, 22 Jun 2009 01:59:02 GMT</pubDate>
<description>1.使用 ip2long() 和 long2ip() 函数来把 IP 地址转化成整型存储到数据库里。这种方法把存储空间降到了接近四分之一（char(15) 的 15 个字节对整形的 4 个字节），计算一个特定的地址是不是在一个区段内页更简单了，而且加快了搜索和排序的速度（虽然有时仅仅是快了一点）。 

2.在验证 email 地址的时候使用 checkdnsrr() 函数验证域名是否存在。这个内置函数能够确认指定的域名能够解析成 IP 地址。该函数的PHP 文档的用户评论部分有一个简单的用户自定义函数，这个函数基于 checkdnsrr()，用来验证 email 地址的合法性。对于那些认为自己的 email 地址是 “joeuser@wwwphp.net” 而不是 “joeuser@php.net” 的家伙们，这个方法可以很方便的抓住他们。 


3.如果你使用的是 PHP 5 和 MySQL 4.1 或者更高的版本，考虑抛弃 mysql_* 系列函数改用改进版的 mysqli_* 系列函数。一个很好的功能就是你可以使用预处理语句，如果你在维护一个数据库密集型站点，这个功能能够加快查询速度。一些评估分数。 

4.学会爱上三元运算符。 

5.如果你在项目中感觉到有可复用的部分，在你写下一行代码前先看看 PEAR 中是否已经有了。很多 PHP 程序员都知道 PEAR 是一个很好的资源库，虽然还有很多程序员不知道。这个在线资源库包含了超过 400 个可以复用的程序片段，这些程序片段你可以立即用刀你的程序里。除非说你的项目真的是非常特别的，你总能找到帮你节省时间的 PEAR 包。（参见 PECL） 

6.用 highlight_file() 来自动的打印出格式化的很漂亮的源代码。如果你在留言板、IRC 这些地方寻求一个脚本的帮助的话，这个函数用起来非常的顺手。当然了，要小心不要意外的泄露出你的数据库连接信息和密码等。 

7.使用 error_reporting(0) 函数来防止用户看到潜在的敏感错误信息。]在理想情况下，发布服务器应该在 php.ini 里完全禁止。但是如果你用的是一个共享的 web 服务器的话，你没有自己的 php.ini 文件，那么这种情况下你最好的选择就是在所有脚本的第一行前加上 error_reporting(0); （或者使用 require_once() 方法）。这就能够在出错的时候完全屏蔽敏感的 SQL 查询语句和路径名。 

8.在网数据库中存储很大的字符串之前使用 gzcompress() 和 gzuncompress() 来显式的压缩/解压字符串。这个 PHP 内置函数使用 gzip 算法，可以压缩普通文本达 90%。在我每次要读写 BLOB 类型的字段的时候都使用这些函数。唯一额例外就是当我需要全文检索的时候。 

9.通过“引用”传递参数的方法从一个函数中得到多个返回值。就像三元运算符一样，大部分受过正式编程训练的程序员都知道这个技巧。但是那些 HTML 背景大于 Pascal 背景的程序员都或多或少的有过这样的疑问“在仅能使用一次 return 的情况下，从一个函数里返回多个值？”答案就是在变量前加上一个 “&amp;” 符号，通过“引用”传递而非“值”传递。 

10.完全理解“魔术引号”和 SQL 注入的危险性。我希望阅读到这里的开发者都已经很对 SQL 注入和了解了。不过我还是把这条列在这里，是因为这个确实有点难以理解。如果你还没有听说过这种说法，那么把今天剩下的时间都用来 Google、阅读吧。</description>
<dc:creator>wingfeng19800215</dc:creator>
</item>
<item>
<title>php框架学习日志二(cakephp在xp上安装)</title>
<link>http://blog.csdn.net/wjazz/archive/2008/07/06/2618750.aspx</link>
<guid isPermaLink="true">http://blog.csdn.net/wjazz/archive/2008/07/06/2618750.aspx</guid>
<category>php</category>
<pubDate>Sun, 21 Jun 2009 14:53:44 GMT</pubDate>
<description></description>
<dc:creator>d9g_bj</dc:creator>
</item>
<item>
<title>php框架学习日志三(cakephp实例-blog)</title>
<link>http://blog.csdn.net/wjazz/archive/2008/07/07/2622976.aspx</link>
<guid isPermaLink="true">http://blog.csdn.net/wjazz/archive/2008/07/07/2622976.aspx</guid>
<category>php</category>
<pubDate>Sun, 21 Jun 2009 14:52:31 GMT</pubDate>
<description></description>
<dc:creator>d9g_bj</dc:creator>
</item>
<item>
<title>PHP真的就无法防机器刷票？</title>
<link>http://topic.csdn.net/u/20090611/15/f396d0da-59fd-4478-b7cc-9073b2cfffcc.html?98072</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20090611/15/f396d0da-59fd-4478-b7cc-9073b2cfffcc.html?98072</guid>
<category>php,防止刷票</category>
<pubDate>Thu, 18 Jun 2009 00:57:21 GMT</pubDate>
<description></description>
<dc:creator>sindel</dc:creator>
</item>
<item>
<title>想要精通PHP吗？先学好Linux/Unix和C吧</title>
<link>http://blog.csdn.net/mynamesucks/archive/2009/02/26/3939449.aspx</link>
<guid isPermaLink="true">http://blog.csdn.net/mynamesucks/archive/2009/02/26/3939449.aspx</guid>
<category>PHP</category>
<pubDate>Wed, 17 Jun 2009 01:50:37 GMT</pubDate>
<description></description>
<dc:creator>babyjojoyoyo</dc:creator>
</item>
<item>
<title>如何使用PHP下载图片，而不是在浏览器中打开图片</title>
<link>http://topic.csdn.net/u/20080126/20/7d921a1d-ac06-40ac-b1f8-b412ec372191.html</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080126/20/7d921a1d-ac06-40ac-b1f8-b412ec372191.html</guid>
<category>php</category>
<pubDate>Tue, 16 Jun 2009 09:07:22 GMT</pubDate>
<description>第一个
image.php 

PHP code&lt;?php
//数据库部分自己改
$link=mysql_connect(&quot;localhost&quot;,&quot;root&quot;,&quot;123456&quot;);  
mysql_select_db('test',$link);  
mysql_query(&quot;set names gb2312&quot;);  

$recid = $_GET['recid']; 
$query=&quot;select * from tb_tpsc where id =  $recid&quot;; 
$result=mysql_query($query); 
$info = mysql_fetch_array($result); 

header(&quot;Expires: Mon, 26 Jul 1997 05:00:00 GMT&quot;); 
header(&quot;Last-Modified: &quot; . gmdate(&quot;D, d M Y H:i:s&quot;) . &quot; GMT&quot;); 
header(&quot;Cache-Control: post-check=0, pre-check=0&quot;, false); 
header(&quot;Pragma: no-cache&quot;); 
header('Content-Type: image/jpeg');  
//想办法获取文件扩展名，我这里默认的给的是jpeg的，这个你没有存起来
header(&quot;Content-Disposition:filename=&quot;. $info['tpmc'] . &quot;.jpeg&quot;); 
echo $info['file']; 
?&gt;

第二个方法：
改成如下形式 
$file_path  =  WWW_ROOT  .  $path  .  DS  .  $file_name;  
$fileLineArray  =  file($file_path);  
header('Content-Type: application/octet-stream');  
header(&quot;Content-Disposition:attachment; filename=$file_name&quot;);  
foreach($fileLineArray  as  $fileLine)  { 
                echo  $fileLine;  
}</description>
<dc:creator>WF_Moonlight</dc:creator>
</item>
<item>
<title>PHP常用网址小结</title>
<link>http://topic.csdn.net/u/20090615/17/5bf9c012-cd4b-4cb3-8809-5173a8015870.html?44268</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20090615/17/5bf9c012-cd4b-4cb3-8809-5173a8015870.html?44268</guid>
<category>PHP</category>
<pubDate>Mon, 15 Jun 2009 14:42:20 GMT</pubDate>
<description></description>
<dc:creator>yunggood</dc:creator>
</item>
<item>
<title>php星形评级代码</title>
<link>http://topic.csdn.net/u/20090611/11/4f3610ad-b475-4273-badd-5f61e4f70baf.html?42938</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20090611/11/4f3610ad-b475-4273-badd-5f61e4f70baf.html?42938</guid>
<category>PHP</category>
<pubDate>Sun, 14 Jun 2009 06:25:34 GMT</pubDate>
<description>PHP</description>
<dc:creator>wangjian0310</dc:creator>
</item>
<item>
<title>php mysql操作类</title>
<link>http://topic.csdn.net/u/20090610/15/01883aea-5499-406d-983e-443e79aec84f.html?74372</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20090610/15/01883aea-5499-406d-983e-443e79aec84f.html?74372</guid>
<category>PHP</category>
<pubDate>Fri, 12 Jun 2009 13:43:25 GMT</pubDate>
<description>PHP code</description>
<dc:creator>zchenglin</dc:creator>
</item>
<item>
<title>以后别写程序了，65个源码网站奉献给大家</title>
<link>http://topic.csdn.net/u/20080501/12/45ab4636-6566-4ffe-8ec0-b99da747ea5b.html</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080501/12/45ab4636-6566-4ffe-8ec0-b99da747ea5b.html</guid>
<category>php</category>
<pubDate>Thu, 11 Jun 2009 03:35:01 GMT</pubDate>
<description>源代码</description>
<dc:creator>xyilu</dc:creator>
</item>
<item>
<title>GridView传多个值并同时添加多条记录</title>
<link>http://topic.csdn.net/u/20090608/16/0d310770-061d-48f6-9e14-f21dfa034b61.html</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20090608/16/0d310770-061d-48f6-9e14-f21dfa034b61.html</guid>
<category>csdn,.net,c#,asp,php,jsp,html,gridview</category>
<pubDate>Thu, 11 Jun 2009 02:50:33 GMT</pubDate>
<description>GridView传多个值并同时添加多条记录</description>
<dc:creator>xb520hh</dc:creator>
</item>
<item>
<title>php的几个配置文件函数</title>
<link>http://0e2.net/post/146.html</link>
<guid isPermaLink="true">http://0e2.net/post/146.html</guid>
<category>php</category>
<pubDate>Wed, 10 Jun 2009 15:22:56 GMT</pubDate>
<description></description>
<dc:creator>wingfeng19800215</dc:creator>
</item>
<item>
<title>DIRECTORY_SEPARATOR常量与PATH_SEPARATOR常量 | php | 紫贝壳</title>
<link>http://wordpress.conch520.com.cn/2008/03/14/directory_separator%E5%B8%B8%E9%87%8F%E4%B8%8Epath_separator%E5%B8%B8%E9%87%8F/</link>
<guid isPermaLink="true">http://wordpress.conch520.com.cn/2008/03/14/directory_separator%E5%B8%B8%E9%87%8F%E4%B8%8Epath_separator%E5%B8%B8%E9%87%8F/</guid>
<category>php</category>
<pubDate>Wed, 10 Jun 2009 15:11:41 GMT</pubDate>
<description>DIRECTORY_SEPARATOR：路径分隔符，linux上就是’/’    windows上是’\’

PATH_SEPARATOR：include多个路径使用，在win下，当你要include多个路径的话，你要用”; ”隔开，但在linux下就使用”:”隔开的。

这2个常量的使用能够避免不同平台的兼容性问题。</description>
<dc:creator>wingfeng19800215</dc:creator>
</item>
<item>
<title>PHP其它运算符号 = PHP开发资源网 = 全球最大的PHP中文社群 = PHPer的网上家园</title>
<link>http://www.phpres.com/html/PHPjichujiaocheng/20070510/522.html</link>
<guid isPermaLink="true">http://www.phpres.com/html/PHPjichujiaocheng/20070510/522.html</guid>
<category>php</category>
<pubDate>Wed, 10 Jun 2009 15:01:39 GMT</pubDate>
<description>除了上述的运算符号之外，还有一些运算符号难以归类。 
符号 意义 
$ 变量 
&amp; 变量的地址 (加在变量前) 
@ 不显示错误信息 (加在函数前) 
-&gt; 类的方法或者属性 
=&gt; 数组的元素值 
? : 三元运算子 


其中比较特殊的是三元运算子 ?   :，以下例来解释 

(expr1) ? (expr2) : (expr3);  

若 expr1 的运算结果为 true，则执行 expr2；否则执行 expr3。实际上它有点类以 if...else 循环，但可以让程序较精简有效率。

欢迎进入PHP开发资源论坛讨论。</description>
<dc:creator>wingfeng19800215</dc:creator>
</item>
<item>
<title>改变互联网的PHP程序</title>
<link>http://blog.csdn.net/Haohappy2004/archive/2008/05/26/2480907.aspx</link>
<guid isPermaLink="true">http://blog.csdn.net/Haohappy2004/archive/2008/05/26/2480907.aspx</guid>
<category>php</category>
<pubDate>Tue, 09 Jun 2009 12:23:51 GMT</pubDate>
<description></description>
<dc:creator>ruinet</dc:creator>
</item>
<item>
<title>PHP学用代码大全</title>
<link>http://topic.csdn.net/u/20090605/14/04859631-b929-4c5f-b2e9-71dbbfce48a1.html?seed=152619809</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20090605/14/04859631-b929-4c5f-b2e9-71dbbfce48a1.html?seed=152619809</guid>
<category>PHP</category>
<pubDate>Mon, 08 Jun 2009 06:19:06 GMT</pubDate>
<description>PHP学用代码大全</description>
<dc:creator>zhaijiufa</dc:creator>
</item>
<item>
<title>PHP开发者：你GLAMMP了吗?</title>
<link>http://news.csdn.net/a/20090525/211500.html</link>
<guid isPermaLink="true">http://news.csdn.net/a/20090525/211500.html</guid>
<category>php</category>
<pubDate>Sun, 07 Jun 2009 14:02:59 GMT</pubDate>
<description></description>
<dc:creator>dhgdmw</dc:creator>
</item>
<item>
<title>PHP开发框架的现状和展望</title>
<link>http://www.fpscript.com/bbs/thread-338-1-1.html</link>
<guid isPermaLink="true">http://www.fpscript.com/bbs/thread-338-1-1.html</guid>
<category>php,框架</category>
<pubDate>Sat, 06 Jun 2009 15:21:42 GMT</pubDate>
<description>未来，PHP将成为Web开发领域中越来越重要的平台。因此我们相信会出现更多更好的开发框架。虽然作为开发者来说，并不一定需要采用某一个框架来解决问题。但正是因为这些不断出现的框架，我们对使用PHP开发Web应用的理解和把握得到了一次次的推动。</description>
<dc:creator>lhg24</dc:creator>
</item>
<item>
<title>PHP 5.2 Oracle客户端扩展（OCI8）安装_linux之家</title>
<link>http://www.linuxhm.cn/html/shujuku/Oracle/2009/0602/476.html</link>
<guid isPermaLink="true">http://www.linuxhm.cn/html/shujuku/Oracle/2009/0602/476.html</guid>
<category>php,oracle,oc18</category>
<pubDate>Sat, 06 Jun 2009 14:29:05 GMT</pubDate>
<description>1、下载Oracle即时客户端程序包 Basic： 运行 OCI、OCCI 和 JDBC-OCI 应用程序所需的所有文件 ①、打开以下网址（本文以32位版为例）：</description>
<dc:creator>haha764</dc:creator>
</item>
<item>
<title>PHP高级程序设计：模式、框架和测试</title>
<link>http://book.csdn.net/bookfiles/1057/</link>
<guid isPermaLink="true">http://book.csdn.net/bookfiles/1057/</guid>
<category>PHP</category>
<pubDate>Fri, 05 Jun 2009 02:06:11 GMT</pubDate>
<description></description>
<dc:creator>ChanceChou</dc:creator>
</item>
<item>
<title>网络开发小贴士：PHP和MySQL开发8个技巧 — IT技术</title>
<link>http://tech.ccidnet.com/art/3539/20090531/1784517_1.html</link>
<guid isPermaLink="true">http://tech.ccidnet.com/art/3539/20090531/1784517_1.html</guid>
<category>PHP</category>
<pubDate>Thu, 04 Jun 2009 04:51:19 GMT</pubDate>
<description></description>
<dc:creator>wingfeng19800215</dc:creator>
</item>
<item>
<title>非常实用的新东方PHP课件打包下载 CSDN 下载频道</title>
<link>http://download.csdn.net/source/1354627</link>
<guid isPermaLink="true">http://download.csdn.net/source/1354627</guid>
<category>PHP,新东方</category>
<pubDate>Tue, 02 Jun 2009 03:43:21 GMT</pubDate>
<description></description>
<dc:creator>helen9682</dc:creator>
</item>
<item>
<title>如果判断一张图片是否存在</title>
<link>http://topic.csdn.net/u/20090529/09/e9b20dbd-149a-4c08-99e2-ef7bc4850021.html</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20090529/09/e9b20dbd-149a-4c08-99e2-ef7bc4850021.html</guid>
<category>php,图片,判断</category>
<pubDate>Mon, 01 Jun 2009 06:21:13 GMT</pubDate>
<description></description>
<dc:creator>sindel</dc:creator>
</item>
<item>
<title>php写的操作mysql的类</title>
<link>http://blog.csdn.net/hellollx/archive/2009/06/01/4230902.aspx</link>
<guid isPermaLink="true">http://blog.csdn.net/hellollx/archive/2009/06/01/4230902.aspx</guid>
<category>mysql,php</category>
<pubDate>Mon, 01 Jun 2009 05:58:18 GMT</pubDate>
<description>一个用php写的操作mysql的类，调用方式，可以参考test.php文件，支持debug调试，在线使用时，关掉debug进行友好的提示，调试程序时，开启debug进行错误的准确提示，支持记录集的数组形式插入和修改</description>
<dc:creator>hellollx</dc:creator>
</item>
<item>
<title>CakePHP中文教程2</title>
<link>http://blog.csdn.net/freeglad/archive/2008/03/10/2162351.aspx</link>
<guid isPermaLink="true">http://blog.csdn.net/freeglad/archive/2008/03/10/2162351.aspx</guid>
<category>cake,php</category>
<pubDate>Sun, 31 May 2009 03:21:26 GMT</pubDate>
<description></description>
<dc:creator>shotomarto</dc:creator>
</item>
<item>
<title>避免出现&quot;Notice: Use of undefined constant......&quot;警告</title>
<link>http://blog.csdn.net/hairi/archive/2006/03/23/635766.aspx</link>
<guid isPermaLink="true">http://blog.csdn.net/hairi/archive/2006/03/23/635766.aspx</guid>
<category>php</category>
<pubDate>Sat, 30 May 2009 14:41:12 GMT</pubDate>
<description></description>
<dc:creator>hustsdy</dc:creator>
</item>
<item>
<title>php,ajax查询中文乱码</title>
<link>http://topic.csdn.net/u/20081014/22/2805b899-bb84-4dfb-93c4-fecc33aa6632.html</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20081014/22/2805b899-bb84-4dfb-93c4-fecc33aa6632.html</guid>
<category>php,ajax</category>
<pubDate>Fri, 29 May 2009 06:48:10 GMT</pubDate>
<description></description>
<dc:creator>showbo</dc:creator>
</item>
<item>
<title>PHP开发者：你GLAMMP了吗?</title>
<link>http://news.csdn.net/a/20090525/211500.html</link>
<guid isPermaLink="true">http://news.csdn.net/a/20090525/211500.html</guid>
<category>GLAMMP,PHP</category>
<pubDate>Thu, 28 May 2009 01:26:50 GMT</pubDate>
<description></description>
<dc:creator>zhoujypp</dc:creator>
</item>
<item>
<title>PHP开发者：你GLAMMP了吗?</title>
<link>http://news.csdn.net/a/20090525/211500.html</link>
<guid isPermaLink="true">http://news.csdn.net/a/20090525/211500.html</guid>
<category>php</category>
<pubDate>Wed, 27 May 2009 02:11:22 GMT</pubDate>
<description>php新技术</description>
<dc:creator>Zacking</dc:creator>
</item>
<item>
<title>PHP开发者：你GLAMMP了吗?</title>
<link>http://news.csdn.net/a/20090525/211500.html</link>
<guid isPermaLink="true">http://news.csdn.net/a/20090525/211500.html</guid>
<category>PHP</category>
<pubDate>Tue, 26 May 2009 01:42:00 GMT</pubDate>
<description></description>
<dc:creator>wingfeng19800215</dc:creator>
</item>
<item>
<title>新手如何学习php提高php的一些建议</title>
<link>http://topic.csdn.net/u/20090324/10/68a75082-74dc-4491-8acb-751559735ff5.html</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20090324/10/68a75082-74dc-4491-8acb-751559735ff5.html</guid>
<category>PHP,Study</category>
<pubDate>Mon, 25 May 2009 07:44:27 GMT</pubDate>
<description></description>
<dc:creator>BlueSky4014</dc:creator>
</item>
<item>
<title>敬请高手指点：如何将文字，图片等，以固定格式导入到word中。100分求解</title>
<link>http://topic.csdn.net/u/20090525/12/cda55187-da34-4d54-9e9f-0581761d4fc5.html</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20090525/12/cda55187-da34-4d54-9e9f-0581761d4fc5.html</guid>
<category>php,word</category>
<pubDate>Mon, 25 May 2009 05:53:23 GMT</pubDate>
<description></description>
<dc:creator>jinliangonline</dc:creator>
</item>
<item>
<title>网友分享：二十五个顶级PHP模板引擎整理-database-CSDN</title>
<link>http://database.csdn.net/page/0047b1ef-729f-4d79-8075-3977bd35988d</link>
<guid isPermaLink="true">http://database.csdn.net/page/0047b1ef-729f-4d79-8075-3977bd35988d</guid>
<category>php</category>
<pubDate>Thu, 21 May 2009 13:26:04 GMT</pubDate>
<description></description>
<dc:creator>wingfeng19800215</dc:creator>
</item>
<item>
<title>[原创]win2003 apache php mysql环境搭建</title>
<link>http://www.jphotline.net/blog/index.php/uid-3-action-viewspace-itemid-379</link>
<guid isPermaLink="true">http://www.jphotline.net/blog/index.php/uid-3-action-viewspace-itemid-379</guid>
<category>java,php</category>
<pubDate>Mon, 18 May 2009 05:28:44 GMT</pubDate>
<description></description>
<dc:creator>cxc3214</dc:creator>
</item>
<item>
<title>PHP 6 与MySQL 5 基础教程</title>
<link>http://book.csdn.net/bookfiles/872/</link>
<guid isPermaLink="true">http://book.csdn.net/bookfiles/872/</guid>
<category>php,mysql</category>
<pubDate>Wed, 13 May 2009 13:28:03 GMT</pubDate>
<description></description>
<dc:creator>lige2008</dc:creator>
</item>
<item>
<title>以后别写程序了，65个源码网站奉献给大家</title>
<link>http://topic.csdn.net/u/20080501/12/45ab4636-6566-4ffe-8ec0-b99da747ea5b.html</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080501/12/45ab4636-6566-4ffe-8ec0-b99da747ea5b.html</guid>
<category>php,网站,源码,整站程序,asp,c#,.net</category>
<pubDate>Mon, 04 May 2009 03:31:31 GMT</pubDate>
<description></description>
<dc:creator>zhangbcool</dc:creator>
</item>
<item>
<title>PHP5与MySQL5 Web开发技术详解</title>
<link>http://book.csdn.net/bookfiles/541/</link>
<guid isPermaLink="true">http://book.csdn.net/bookfiles/541/</guid>
<category>php,mysql</category>
<pubDate>Sat, 02 May 2009 11:54:25 GMT</pubDate>
<description></description>
<dc:creator>ivwsrboc</dc:creator>
</item>
<item>
<title>PHP</title>
<link>http://blog.csdn.net/hu_zhenghui/archive/2007/11/11/1879582.aspx</link>
<guid isPermaLink="true">http://blog.csdn.net/hu_zhenghui/archive/2007/11/11/1879582.aspx</guid>
<category>php,zend,platform</category>
<pubDate>Wed, 29 Apr 2009 06:25:49 GMT</pubDate>
<description>PHP - 下载 - Zend Platform 3.0.3</description>
<dc:creator>xb520hh</dc:creator>
</item>
<item>
<title>如何编写PHP扩展</title>
<link>http://blog.csdn.net/taft/archive/2006/02/10/596291.aspx</link>
<guid isPermaLink="true">http://blog.csdn.net/taft/archive/2006/02/10/596291.aspx</guid>
<category>PHP,扩展</category>
<pubDate>Wed, 29 Apr 2009 00:29:27 GMT</pubDate>
<description>如何编写PHP扩展</description>
<dc:creator>yuyu1984</dc:creator>
</item>
<item>
<title>Using C++ With PHP</title>
<link>http://blog.csdn.net/taft/archive/2005/02/14/287495.aspx</link>
<guid isPermaLink="true">http://blog.csdn.net/taft/archive/2005/02/14/287495.aspx</guid>
<category>C++,PHP,扩展</category>
<pubDate>Wed, 29 Apr 2009 00:29:07 GMT</pubDate>
<description>Using C++ With PHP - PHP 扩展</description>
<dc:creator>yuyu1984</dc:creator>
</item>
<item>
<title>php中session_cache_limiter和header支持的页面回跳</title>
<link>http://happyspa.javaeye.com/blog/287147</link>
<guid isPermaLink="true">http://happyspa.javaeye.com/blog/287147</guid>
<category>php,ajax</category>
<pubDate>Mon, 20 Apr 2009 04:34:02 GMT</pubDate>
<description>现在表单的填写，我们可以用AJAX对用户随时进行验证，进行友好的提示，但是在用户没有留意AJAX友好提示,提交了错误的表单，跳回原页，而填写的信息却全部丢失了。要支持页面回跳，有以下的办法： 

1.使用session_cache_limiter方法： 
Php代码 
session_cache_limiter('private,must-revalidate'); </description>
<dc:creator>AppZ</dc:creator>
</item>
<item>
<title>PHP实现的Mysql读写分离</title>
<link>http://www.blueidea.com/tech/program/2009/6636.asp</link>
<guid isPermaLink="true">http://www.blueidea.com/tech/program/2009/6636.asp</guid>
<category>php</category>
<pubDate>Sun, 19 Apr 2009 11:41:06 GMT</pubDate>
<description></description>
<dc:creator>wingfeng19800215</dc:creator>
</item>
<item>
<title>一个用php写的中文分词类</title>
<link>http://bbs.voos.org.cn/viewthread.php?tid=56&amp;extra=page%3D1</link>
<guid isPermaLink="true">http://bbs.voos.org.cn/viewthread.php?tid=56&amp;extra=page%3D1</guid>
<category>PHP</category>
<pubDate>Sun, 19 Apr 2009 04:10:06 GMT</pubDate>
<description></description>
<dc:creator>jack4518</dc:creator>
</item>
<item>
<title>php session应用实例--登录验证</title>
<link>http://blog.csdn.net/zhuzhao/archive/2009/03/15/3992840.aspx</link>
<guid isPermaLink="true">http://blog.csdn.net/zhuzhao/archive/2009/03/15/3992840.aspx</guid>
<category>PHP</category>
<pubDate>Fri, 17 Apr 2009 09:54:54 GMT</pubDate>
<description></description>
<dc:creator>forever0108</dc:creator>
</item>
<item>
<title>php网络编程技术与实例(曹衍龙) CSDN 下载频道</title>
<link>http://download.csdn.net/source/1209317#rating</link>
<guid isPermaLink="true">http://download.csdn.net/source/1209317#rating</guid>
<category>php</category>
<pubDate>Wed, 15 Apr 2009 10:44:02 GMT</pubDate>
<description></description>
<dc:creator>taotao9229</dc:creator>
</item>
</channel></rss>
