php遍历数组高级操作详解

在php中遍历数据一般会使用到list,foreach,each其实中一种,但下面的教程可能不会用到,下面我来给各位分别介绍一下遍历数组高级实例,希望此方法对大家有帮助.

学习程式语言时,总是学学 for,然后再试著用 while 写出 for 的效果等等的一些练习,来看看没有 foreach 前,要想要有 foreach 的功能要怎?写(用 while、list、each 来达成).

在这篇文章看到: PHP的foreach前身写法,代码如下:

  1. //旧的写法
  2. reset($attributes);
  3. while (list($key, $value) = each($attributes)) {
  4. //do something
  5. }//开源代码phpfensi.com
  6. //PHP4版本新增
  7. foreach ($attributes as $key => $value){
  8. //do something
  9. }

多维关联数组排序

PHP提供了一些数组排序的函数,比如sort(), ksort(),和asort(),但是却没有提供对多维关联数组的排序.

比如这样的数组,代码如下:

  1. Array
  2. (
  3. [0] => Array
  4. (
  5. [name] => chess
  6. [price] => 12.99
  7. )
  8. [1] => Array
  9. (
  10. [name] => checkers
  11. [price] => 9.99
  12. )
  13. [2] => Array
  14. (
  15. [name] => backgammon
  16. [price] => 29.99
  17. )
  18. )

要将该数组按照升序排序,你需要自己写一个函数用于比较价格,然后将该函数作为回调函数传递给usort()函数来实现该功能,代码如下:

  1. function comparePrice($priceA, $priceB){
  2. return $priceA['price'] - $priceB['price'];
  3. }

usort($games, 'comparePrice');执行了该程序片段,数组就会被排序,结果如下所示:

  1. Array
  2. (
  3. [0] => Array
  4. (
  5. [name] => checkers
  6. [price] => 9.99
  7. )
  8. [1] => Array
  9. (
  10. [name] => chess
  11. [price] => 12.99
  12. )
  13. [2] => Array
  14. (
  15. [name] => backgammon
  16. [price] => 29.99
  17. )
  18. )

要将该数组按照降序排序,把comparePrice()函数里面的两个减的数调换位置就可以了.

逆序遍历数组

PHP的While循环和For循环是遍历一个数组最常用的方法,但是你怎样遍历像下面这个数组呢?代码如下:

  1. Array
  2. (
  3. [0] => Array
  4. (
  5. [name] => Board
  6. [games] => Array
  7. (
  8. [0] => Array
  9. (
  10. [name] => chess
  11. [price] => 12.99
  12. )
  13. [1] => Array
  14. (
  15. [name] => checkers
  16. [price] => 9.99
  17. )
  18. )
  19. )
  20. )

PHP标准库中有一个对集合的迭代器iterators类,它不仅仅能够用于遍历一些异构的数据结构,比如文件系统和数据库查询结果集,也可以对一些不知道大小的嵌套数组的遍历,比如对上面的数组的遍历,可以使用RecursiveArrayIterator迭代器进行,代码如下:

  1. $iterator = new RecursiveArrayIterator($games);
  2. iterator_apply($iterator, 'navigateArray', array($iterator));
  3. function navigateArray($iterator) {
  4. while ($iterator->valid()) {
  5. if ($iterator->hasChildren()) {
  6. navigateArray($iterator->getChildren());
  7. } else {
  8. printf("%s: %s", $iterator->key(), $iterator->current());
  9. }
  10. $iterator->next();
  11. }
  12. }
  13. //执行该段代码会给出以下的结果:
  14. name: Board
  15. name: chess
  16. price: 12.99
  17. name: checkers
  18. price: 9.99

过滤关联数组的结果

假定你得到了如下一个数组,但是你仅仅想操作价格低于$11.99的元素,代码如下:

  1. Array
  2. (
  3. [0] => Array
  4. (
  5. [name] => checkers
  6. [price] => 9.99
  7. )
  8. [1] => Array
  9. (
  10. [name] => chess
  11. [price] => 12.99
  12. )
  13. [2] => Array
  14. (
  15. [name] => backgammon
  16. [price] => 29.99
  17. )
  18. )

使用array_reduce()函数可以很简单的实现,代码如下:

  1. function filterGames($game){
  2. return ($game['price'] < 11.99);
  3. }
  4. $names = array_filter($games, 'filterGames');

array_reduce()函数会过滤掉不满足回调函数的所有的元素,本例子的回调函数就是filterGames,任何价格低于11.99的元素会被留下,其他的会被剔除,该代码段的执行结果,代码如下:

  1. Array
  2. (
  3. [1] => Array
  4. (
  5. [name] => checkers
  6. [price] => 9.99
  7. )
  8. )

对象转换成数组

一个需求就是将对象转换成数组形式,方法比你想象的简单很多,仅仅强制转换就可以了,例子代码如下:

  1. class Game {
  2. public $name;
  3. public $price;
  4. }
  5. $game = new Game();
  6. $game->name = 'chess';
  7. $game->price = 12.99;

print_r(array($game));执行该例子就会产生如下结果:

  1. Array
  2. (
  3. [0] => Game Object
  4. (
  5. [name] => chess
  6. [price] => 12.99
  7. )
  8. )

将对象转换成数组会出现一些不可预料的副作用,比如上面的代码段,所有的成员变量都是public类型的,但是对于private私有变量的返回结果会变得不一样,下面是另外一个例子,代码如下:

  1. class Game {
  2. public $name;
  3. private $_price;
  4. public function setPrice($price) {
  5. $this->_price = $price;
  6. }
  7. }
  8. $game = new Game();
  9. $game->name = 'chess';
  10. $game->setPrice(12.99);
  11. print_r(array($game));
  12. //执行该代码片段:
  13. Array
  14. (
  15. [0] => Game Object
  16. (
  17. [name] => chess
  18. [_price:Game:private] => 12.99
  19. )
  20. )

正如你所看到的,为了进行区分,数组中保存的私有变量的key被自动改变了.

数组的“自然排序”

PHP对于“字母数字”字符串的排序结果是不确定的,举个例子,假定你有很多图片名称存放于数组中,代码如下:

  1. $arr = array(
  2. 0=>'madden2011.png',
  3. 1=>'madden2011-1.png',
  4. 2=>'madden2011-2.png',
  5. 3=>'madden2012.png'
  6. );

你怎样对这个数组进行排序呢?如果你用sort()对该数组排序,结果是这样的,代码如下 :

  1. Array
  2. (
  3. [0] => madden2011-1.png
  4. [1] => madden2011-2.png
  5. [2] => madden2011.png
  6. [3] => madden2012.png
  7. )

有时候这就是我们想要的,但是我们想保留原来的下标怎么办?解决该问题可以使用natsort()函数,该函数用一种自然的方法对数组排序,代码如下:

  1. <?php
  2. $arr = array(
  3. 0=>'madden2011.png',
  4. 1=>'madden2011-1.png',
  5. 2=>'madden2011-2.png',
  6. 3=>'madden2012.png'
  7. );
  8. natsort($arr);
  9. echo "<pre>"; print_r($arr); echo "</pre>";
  10. ?>
  11. //运行结果:
  12. Array
  13. (
  14. [1] => madden2011-1.png
  15. [2] => madden2011-2.png
  16. [0] => madden2011.png
  17. [3] => madden2012.png
  18. )