如何将SimpleXML对象转换为数组,然后进行随机播放?

时间:2010-05-31 22:22:48

标签: php simplexml

问题的关键: 我有一个XML file,可以返回20个结果。在这些结果中,我需要获得所有元素。现在,我需要以随机顺序返回它们,并且能够专门处理第1项,第2-5项和第6-17项。

创意1:使用this script将对象转换为数组,我可以随机播放。这接近于工作,但我需要获得的一些元素在不同的命名空间下,我似乎无法获得它们。代码:

/*
 * Convert a SimpleXML object into an array (last resort).
 *
 * @access public
 * @param object $xml
 * @param boolean $root - Should we append the root node into the array
 * @return array
 */

function xmlToArray($xml, $root = true) {
if (!$xml->children()) {
    return (string)$xml;
}

$array = array();
foreach ($xml->children() as $element => $node) {
    $totalElement = count($xml->{$element});

    if (!isset($array[$element])) {
        $array[$element] = "";
    }

    // Has attributes
    if ($attributes = $node->attributes()) {
        $data = array(
            'attributes' => array(),
            'value' => (count($node) > 0) ? xmlToArray($node, false) : (string)$node
            // 'value' => (string)$node (old code)
        );

        foreach ($attributes as $attr => $value) {
            $data['attributes'][$attr] = (string)$value;
        }

        if ($totalElement > 1) {
            $array[$element][] = $data;
        } else {
            $array[$element] = $data;
        }

    // Just a value
    } else {
        if ($totalElement > 1) {
            $array[$element][] = xmlToArray($node, false);
        } else {
            $array[$element] = xmlToArray($node, false);
        }
    }
}

if ($root) {
    return array($xml->getName() => $array);
} else {
    return $array;
}
}

$thumbfeed = simplexml_load_file('http://gdata.youtube.com/feeds/api/videos?q=skadaddlemedia&max-results=20&orderby=published&prettyprint=true');

$xmlToArray = xmlToArray($thumbfeed);
$thumbArray = $xmlToArray["feed"];
for($n = 0; $n < 18; $n++){
$title = $thumbArray["entry"][$n]["title"]["value"];
$desc = $thumbArray["entry"][0]["content"]["value"];
$videoUrl = $differentNamespace;
$thumbUrl = $differentNamespace;
}

创意2:继续使用我使用foreach获取信息的工作代码,但将每个元素存储在数组中,然后使用shuffle。我不确定如何写入foreach循环中的数组,而不是相互写入。工作代码:

foreach($thumbfeed->entry as $entry){
    $thumbmedia = $entry->children('http://search.yahoo.com/mrss/')
        ->group
    ;
    $thumb = $thumbmedia->thumbnail[0]->attributes()->url;
    $thumburl = $thumbmedia->content[0]->attributes()->url;
    $thumburl1 = explode("http://www.youtube.com/v/", $thumburl[0]);
    $thumbid = explode("?f=videos&app=youtube_gdata", $thumburl1[1]);
    $thumbtitle = $thumbmedia->title;

    $thumbyt = $thumbmedia->children('http://gdata.youtube.com/schemas/2007')
        ->duration
    ;
    $thumblength = $thumbyt->attributes()->seconds;     
}

关于其中任何一个是否是我的问题的良好解决方案的想法,如果是,我如何克服我的执行驼峰?非常感谢您提供的任何帮助。

更新:示例XML is here

2 个答案:

答案 0 :(得分:2)

foreach($thumbfeed->entry as $entry){
    $item = array();

    $thumbmedia = $entry->children('http://search.yahoo.com/mrss/')->group;
    $item['thumb'] = $thumbmedia->thumbnail[0]->attributes()->url;

    $thumburl = $thumbmedia->content[0]->attributes()->url;
    $thumburl1 = explode("http://www.youtube.com/v/", $thumburl[0]);
    $item['thumbid'] = explode("?f=videos&app=youtube_gdata", $thumburl1[1]);
    $item['thumbtitle'] = $thumbmedia->title;

    $thumbyt = $thumbmedia->children('http://gdata.youtube.com/schemas/2007')->duration;
    $item['thumblength'] = $thumbyt->attributes()->seconds;

    $items[] = $item;
}

结果将是一个数组$items[],其中每个元素都是一个关联数组,其中包含循环中的字段。

$x[] = $y;是“将$y附加为数组$x的新元素”的简写。

答案 1 :(得分:0)

  

我不确定hwo是否会在foreach循环中写入数组而不是相互写入

您可以使用

将元素添加到数组的末尾
$array[] = "new element";

array_push($array, "new element");

第一个是首选,因为它避免了函数调用。