$fp = fopen('data.txt', 'r');
$xml = new SimpleXMLElement('<allproperty></allproperty>');
while ($line = fgetcsv($fp)) {
if (count($line) < 4) continue; // skip lines that aren't full
$node = $xml->addChild('aproperty');
$node->addChild('postcode', $line[0]);
$node->addChild('price', $line[1]);
$node->addChild('imagefilename', $line[2]);
$node->addChild('visits', $line[3]);
}
echo $xml->saveXML();
im ben bu SimpleXML, şerefe nasıl yapabilirim, bir xml dosyası içine metin dosyasını dönüştürmek için bu komut dosyasını kullanarak, ama bir dosyaya çıktı istiyorum