Help with this error message > unexpected T

The code below is part of an rss feed parser using WordPress's simplepie fetch_feed()...

Code is:

    if ($enclosure = $item->get_enclosure(0))
    {
    $image_thumb = $item->get_enclosure()->get_link().'screenshot.jpg';
    $image = $item->get_enclosure()->get_link().'screenshot-full.jpg';
    }
    $link = esc_url( strip_tags( $item->get_link() ) );
    $content = $item->get_content();

Upon trying to activate the theme in which this code appears, I'm getting the following error:

Parse error: syntax error, unexpected T_OBJECT_OPERATOR in /home/.../functions.php on line 1341

Line 1341 is the line that starts with $image_thumb


我的猜测是,这是PHP 4,它不支持方法链接。


是的它的PHP 4不支持单一的多方法访问

链接地址: http://www.djcxy.com/p/11916.html

上一篇: 解析错误:语法错误,意外的T

下一篇: 帮助此错误消息>意外的T