Guest User

Untitled

a guest
Nov 20th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. $myfile = "/home/dibon/AML_Data/test.csv";
  2. $myfile = fopen("$myfile", "r") or die("Unable to open file!");
  3.  
  4. fgets($myfile); //First fgets to read over header line.
  5.  
  6. while($line=fgets($myfile)){
  7. //Explode your line by space delimeter
  8. $words=explode("|",$line);
  9.  
  10. DB::table('transaction_incremental')->insert(
  11. ['ReceiptNumber' => "$words[0]", 'InitiatingMSISDN' => "$words[2]"]
  12. );
  13.  
  14. }
Add Comment
Please, Sign In to add comment