Help with this error message > unexpected T_OBJECT_OPERATOR

拈花ヽ惹草 提交于 2020-02-07 06:30:09

问题


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


回答1:


My wild guess is that this is PHP 4, which doesn't support method chaining.




回答2:


Yes Its PHP 4 it doesn't support multi method access in single



来源:https://stackoverflow.com/questions/3990212/help-with-this-error-message-unexpected-t-object-operator

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!