开发者

Help with this error message > unexpected T_OBJECT_OPERATOR

开发者 https://www.devze.com 2023-01-21 00:37 出处:网络
The code below is part of an r开发者_如何学Pythonss feed parser using WordPress\'s simplepie fetch_feed()...

The code below is part of an r开发者_如何学Pythonss 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


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


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

0

精彩评论

暂无评论...
验证码 换一张
取 消