phpmysqloutlookcontacts

Importing contacts from Outlook CSV in PHP


How can I import contacts from an Outlook file? I assume it's a form of CSV file. I am using PHP.


Solution

  • I found out that it was allowed export as tab separated values. Which is a text file. I used file-get-contents with str-getcsv to parse it into a array.

    str-getcsv(file-get-contents($file), "\t")
    

    if you wish to use csv file the use the following

    str-getcsv(file-get-contents($file), ",")