第158行第1行的错误:AttValue:“或'预期

时间:2016-10-08 07:55:42

标签: php xml rss jwplayer

请帮我找出错误的地方。我正在尝试从php文件创建xml来为JWPlayer 6创建一个播放列表,但是我无法从XML中找出这个错误:

  第158行第1行的

错误:AttValue:“或'预期

// xml
header("Content-Type: text/xml; charset=utf-8");
$xml    =   "<rss version='2.0' xmlns:jwplayer='http://rss.jwpcdn.com/'><channel><item>";
$xml    .=  "<title>".$play[0][0]."</title><description></description><jwplayer:image></jwplayer:image><jwplayer:source file=".$provider.$code."/></item>";
$xml    .=  "</channel></rss>";
echo $xml;
exit();

1 个答案:

答案 0 :(得分:0)

您创建jwplayer:resource元素的部分不正确:

<jwplayer:source file=".$provider.$code."/>

您错过了file属性值附近的引号:

<jwplayer:source file='".$provider.$code."'/>