Moin ich habe da ein Problem. ich habe eine Textdatei: Inhalt :
|!|foreign_id|!|article_nr|!|title|!|tax|!|price|!|price_uvp|!|basic_price|!|units|!|delivery_surcha rge|!|delivery_calc_once|!|short_desc|!|long_desc|!|url|!|auto_linefeet|!|picture|!|picture2|!|pictu re3|!|picture4|!|picture5|!|categories|!|variants|!|discount_set_id|!|stock|!|cross_selling|!|delite m|!|status|!|top_offer|!|
Kann mir jemand sagen worum der das nicht in ein Array ballert?
Danke
Gruß
Wolf
|!|foreign_id|!|article_nr|!|title|!|tax|!|price|!|price_uvp|!|basic_price|!|units|!|delivery_surcha rge|!|delivery_calc_once|!|short_desc|!|long_desc|!|url|!|auto_linefeet|!|picture|!|picture2|!|pictu re3|!|picture4|!|picture5|!|categories|!|variants|!|discount_set_id|!|stock|!|cross_selling|!|delite m|!|status|!|top_offer|!|
PHP-Code:
<?php
$handle = fopen ("yatego.txt", "r+");
while (!feof($handle)) {
$buffer = fgets($handle, 4096);
}
$teile = explode('|!|', $buffer);
print_r($teile);
fclose ($handle);
?>
Danke
Gruß
Wolf
Kommentar