Hızlı ve kirli bir haber sistemi yapmak için çalışıyorum.
Temel bir XML dosyası var.
<?xml version="1.0" encoding="ISO-8859-1"?>
<articles>
<article id="1">
<title>Article title 001</title>
<short>Short text</short>
<long>Long text</long>
</article>
<article id="2">
<title>Article title 002</title>
<short>Short text</short>
<long>Long text</long>
</article>
</articles>
Ben aşağıdaki kod ile tüm makaleleri görüntüleyebilirsiniz:
<?php
$xmldoc = new DOMDocument();
$xmldoc->load('test.xml');
$xpathvar = new Domxpath($xmldoc);
$queryResult = $xpathvar->query('//articles/article'); // works fine grabs all articles
foreach($queryResult as $result){
echo $result->textContent;
}
?>
Ben sadece kimliği dayalı sadece bir makale göstermek için nasıl çalışmak olamaz.
Herhangi bir yardım büyük olurdu.
Thanks Stefan