With a parameter:


SUBMITTED BY: henry1874w

DATE: June 26, 2017, 5:03 p.m.

FORMAT: Text only

SIZE: 174 Bytes

HITS: 223

  1. <?php
  2. function myfunction($value,$key,$p)
  3. {
  4. echo "$key $p $value<br>";
  5. }
  6. $a=array("a"=>"red","b"=>"green","c"=>"blue");
  7. array_walk($a,"myfunction","has the value");
  8. ?>

comments powered by Disqus