Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 2nd, 2012  |  syntax: None  |  size: 0.33 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. how to make mysql_fetch_array()? using array_walk?
  2.        
  3.  
  4.         // Test here
  5.         //
  6.         //
  7.         $a = $class->csv_reader('./up/agent/26705.csv');
  8.         //function test_print($item2,$key){
  9.         //      echo "$key .  $item2 <br/>";
  10.                
  11.         //}    
  12.         //array_walk($a,'test_print');
  13.        
  14.         while($b = array_walk($a)){
  15.                
  16.                 echo $b[0];
  17.                
  18.                 if($i>40000){exit;}
  19.                 $i++;
  20.         }