What is the difference between .= and = ? What is .= used for?
Example:
<?php
$file = fopen('WERK-tabelle.csv', 'r') or die('error');
$yml = '';
$keys = [
    blabla, code, php
];
while (($values = fgetcsv($file, 0, ';')) !== FALSE) {
    $yml .= "<br>";
    $arr = array_combine($keys, $values);
    foreach ($arr as $key => $value) {
        $yml .= "<br>{$key}{$value}\n";
    }
}
 
     
     
    