php 和 mysql 开发的 8 个技巧
时间:2008-05-13 来源:剑心通明
- LAMP 架构的网站,我以前注重的多是安装/配置方面的,讲述开发的相对较少,因为自己从事开发也少。本文的原文当然也来自:
-
- Published on The O'Reilly Network (http://www.oreillynet.com/)
- http://www.oreillynet.com/pub/a/onlamp/2002/04/04/webdb.html
-
- 看了以后,颇有启发,以前开发中遇到的一些问题,迎刃而解。所以翻译出来和大家共享。
-
- 1. PHP 中数组的使用
- 在操作数据库时,使用关联数组(associatively-indexed arrays)十分有帮助,下面我们看一个基本的数字格式的数组遍历:
-
- $temp[0] = "richmond";
- $temp[1] = "tigers";
- $temp[2] = "premiers";
-
- for($x=0;$x
- {
- echo $temp[$x];
- echo " ";
- }
- ?>
然而另外一种更加节省代码的方式是:
$temp = array("richmond", "tigers", "premiers");
foreach ($temp as $element)
echo "$element ";
相关阅读 更多 +