目前我正在
解析错误:第45行的/home/some/thing/index.php中的语法错误,意外的''& i =''(T_CONSTANT_ENCAPSED_STRING)
以下一行:
$content = '<iframe width="100%" height="70" frameborder="no" scrolling="no" src="http://example.com/player/audio.php?mp3=http://www.example.com/mp3embed-'.$secret.'.mp3''&i='.$row['image'].'&s='.$songz.'&a='.$artistz.'"></iframe>';
我不完全确定我在这里做错了什么,但我觉得这有点像是一种愚蠢的goober。
答案 0 :(得分:1)
变化:
$content = '<iframe width="100%" height="70" frameborder="no" scrolling="no" src="http://example.com/player/audio.php?mp3=http://www.example.com/mp3embed-'.$secret.'.mp3''&i='.$row['image'].'&s='.$songz.'&a='.$artistz.'"></iframe>';
要:
$content = '<iframe width="100%" height="70" frameborder="no" scrolling="no" src="http://example.com/player/audio.php?mp3=http://www.example.com/mp3embed-'.$secret.'.mp3&i='.$row['image'].'&s='.$songz.'&a='.$artistz.'"></iframe>';
你不能在没有某种连接的情况下结束并开始这样的字符串。
答案 1 :(得分:0)
Ty改变
$content = '<iframe width="100%" height="70" frameborder="no" scrolling="no" src="http://example.com/player/audio.php?mp3=http://www.example.com/mp3embed-'.$secret.'.mp3''&i='.$row['image'].'&s='.$songz.'&a='.$artistz.'"></iframe>';
到
$content = '<iframe width="100%" height="70" frameborder="no" scrolling="no" src="http://example.com/player/audio.php?mp3=http://www.example.com/mp3embed-'.$secret.'.mp3&i='.$row['image'].'&s='.$songz.'&a='.$artistz.'"></iframe>';