Thursday, September 19, 2019
php - Help with this error message > unexpected T_OBJECT_OPERATOR
Answer
Answer
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
Answer
My wild guess is that this is PHP 4, which doesn't support method chaining.
Subscribe to:
Post Comments (Atom)
hard drive - Leaving bad sectors in unformatted partition?
Laptop was acting really weird, and copy and seek times were really slow, so I decided to scan the hard drive surface. I have a couple hundr...
-
Using Windows 7. When I RDP to a PC I'd like to be able to logout of the session without the screen reverting to a Ctrl+Alt+Del Login sc...
-
I tried adding grubx64.efi in the Windows Boot Manager using BCDEdit. However when I boot up my computer and try to start GRUB from Windows ...
-
I have a hp notebook (HP 240 G5 with an Intel Core i3-5005U CPU) with a preinstalled 64 bit Windows 10 Home Single Language. For testing my...
No comments:
Post a Comment