破晓2010

PHP&MySQL的学习与分享部落

导航

2010年12月16日

PHP和MySQL开发的8个技巧

摘要: 1.PHP中数组的使用在操作数据库时,使用关联数组(associatively-indexed arrays)十分有帮助,下面我们看一个基本的数字格式的数组遍历: ?php$temp[0] = "richmond";$temp[1] = "tigers";$temp[2] = "premiers";for($x=0;$xcount($temp);$x++){echo $temp[$x];echo " ";}?然而另外一种更加节省代码的方式是: ?php$temp = array("richmond", "tigers", "premiers");foreach ($temp as $e 阅读全文

posted @ 2010-12-16 10:20 破晓2010 阅读(250) 评论(0) 推荐(0) 编辑