用PHP解析XML

时间:2016-03-06 22:32:00

标签: php xml

我对XML没什么问题。我的XML文件如下所示:

http://pastebin.com/MQUB2W2B我是用户pastebin,因为此网站不支持xml代码..://

所以我需要选择源代码安装" / stream" 和其他源代码安装" /" 。我的PHP代码如下所示:

Class stream {

    Public Function __construct($host, $path, $user, $pass, $mpoint){

        $this->host = $host;
        $this->path = $path;
        $this->user = $user;
        $this->password = $pass;
        $this->mpoint = $mpoint;

        $this->url = "http://{$this->user}:{$this->password}@{$this->host}/{$this->path}";
        $this->xml = simplexml_load_file($this->url);

    }

    Public Function audio($url, $format){

        return print "<audio controls> <source src=\"{$url}\" type=\"audio/{$format}\"> </audio>";

    }

    Public Function stream_meta(){

        $xml = $this->xml->registerXPathNamespace('test', '/{$this->mpoint}');
        $result = $xml->xpath('test:artist');

        return $result;

    }

    Public Function nowplay(){

        return $this->xml->source[0]->artist;
    }

    Public Function download($format){

        $link = "http://{$this->host}/{$this->mpoint}";

        if($format == "m3u"){
            return "{$link}.m3u";
        }

        elseif($format == "xspf"){
            return "{$link}.xspf";
        }

        elseif($format == "vclt"){
            return "{$link}.vclt";
        }

        return false;

    }


}

所以现在我问我做错了什么或我能做得更好?我需要选择艺术家数据并知道什么是源代码&#34;这是什么?&#34; 。我真的需要帮助。我不知道自己能做些什么,也没有发明其他方法来做到这一点。我太累了,我真的需要帮助!拜托,任何人都可以帮助我吗?我不想使用&#34; nowplay()&#34;功能。因为源代码安装&#34; /示例&#34; 有时会改变...

1 个答案:

答案 0 :(得分:0)

我并不完全清楚你想要实现的目标,但这里有一个基本的例子,可以在XML中获取每个源的mount和artist:

function sources(){
    foreach($this->xml->source as $source) {
        echo "Mount: " . $source->attributes()['mount'] . '<br>';
        echo "Artist: " . $source->artist . '<br>';
    }
}

或者找一位来源的艺术家:

$source = $this->find_source('/stream');
$artist = $source->artist;

function find_source($s){
    foreach($this->xml->source as $source) {
        if ($source->attributes()['mount'] == $s) {
            return $source;
        }
    }
}

或者,您可以使用XPath执行相同操作,而无需使用循环。例如:

function find_source($s){
    return $this->xml->xpath('/icestats/source[@mount="'.$s.'"]')[0];
}