下面是我用来创建电影视频列表的代码。出于某种原因,我无法让 media:content 正常工作。
这就是我现在所拥有的
$xml_output .= "\t<media:content url='" . $row['name'].".m4v" . " type='video/mpg' />\n";
这是整个事情
$xml_output = "<?xml version=\"1.0\"?>\n";
$xml_output .= "<channel>\n";
$xml_output .= "\t\t<title>Ellucid Movies</title>\n";
$xml_output .= "\t\t<link>http://google.com</link>\n";
for($x = 0 ; $x < mysql_num_rows($resultID) ; $x++){
$row = mysql_fetch_assoc($resultID);
$xml_output .= "\t<item>\n";
$xml_output .= "<title>" . $row['name'] .".m4v" . "</title>\n";
$xml_output .= "<link>" . $row['link'] . "</link>\n";
$xml_output .= "\t<media:content url='" . $row['name'].".m4v" . " type='video/mpg' />\n";
$xml_output .= "\t</item>\n";
}
$xml_output .= "</channel>";
echo $xml_output;
当我注释掉媒体内容时,xml 按预期工作......当我添加媒体时,它什么也不做。