Pro.Luv Posted December 20, 2008 Share Posted December 20, 2008 Hi, I know how to use this to get meta tags the problem is sometimes it takes long to fetch meta tags and then I get a message saying: Maximum execution time of 60 seconds exceeded.. my code... $metatags = @ get_meta_tags($url); $title = $metatags["title"]; $description = $metatags["description"]; $keywords = $metatags["keywords"]; Thanks Link to comment https://forums.phpfreaks.com/topic/137811-get_meta_tags/ Share on other sites More sharing options...
MadTechie Posted December 20, 2008 Share Posted December 20, 2008 your script is taking too long to complete you could try using set_time_limit ( int $seconds ) ie set_time_limit(0); Link to comment https://forums.phpfreaks.com/topic/137811-get_meta_tags/#findComment-720283 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.