Hangi xml dosyasını okumak için en iyi php uzantısı?

0 Cevap php

Which is the best php extension for reading xml file from absolute path? The xml file is simple:

<?xml version="1.0" encoding="utf-8"?>
<online>
    <coountry value='us'>
        <user hours='10' name='user1' id='1' />
        <user hours='9' name='user2' id='2' />
        <user hours='8' name='user3' id='3' />
    </country>
</online>

Xml itibaren ben ülke etiketi döngü gerekiyor ve her kullanıcı etiket niteliklerini kullanır.

0 Cevap