PHP array_walk() 函數詳解

定義

array_walk - 對數組的每一個元素應用自定義函數php


描述

array_walk ( array &$array , callable $callback [, mixed $userdata = NULL ] ) : bool

回調函數的參數,第一個是元素值,第二個是元素鍵名,第三個是可選的 $userdata數組

若是隻想改變數組值,第一個參數可以使用引用傳遞,即在參數前加上 &app


示例

<?php
  $fruits = array("a" => "orange", "b" => "banana", "c" => "apple");

  function test_alter(&$item1, $key, $prefix)
  {
      $item1 = "$prefix: $item1";
  }

  function test_print($item2, $key)
  {
      echo "$key. $item2<br />\n";
  }

  echo "Before ...:\n";
  array_walk($fruits, 'test_print');

  array_walk($fruits, 'test_alter', 'fruit');
  echo "... and after:\n";

  array_walk($fruits, 'test_print');
?>

將輸出:函數

Before ...:
a. orange
b. banana
c. apple
... and after:
a. fruit: orange
b. fruit: banana
c. fruit: apple

總結

上面說若是想改變數組的值,必須使用引用傳遞,因而我想能不能不這樣,直接使用返回值,測試了一下,是不行的,由於回調函數的返回值並無用到,猜測此函數的目的主要在把數組的每一個元素遍歷一下,即 走 walk 一遍.測試

相關文章
相關標籤/搜索