Can anybody see any reason why I would get this error?
Notice: Array to string conversion in c:\inetpub\wwwroot\idximportproject\fileimport.php on line 6
<?php
//Load file into variable for tab sorting.
$listingres = file('Listings-Residential.txt');
//Use explode function to put tabbed array into the variable $string
$lines = explode("\t", $listingres);
print_r($lines); //Print out readable data about string
?>