FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » Imported messages » comp.lang.php » Checking for content in string creates time-out??
Show: Today's Messages :: Polls :: Message Navigator
Return to the default flat view Create a new topic Submit Reply
Checking for content in string creates time-out?? [message #170015] Tue, 05 October 2010 16:05 Go to previous message
Mechphisto is currently offline  Mechphisto
Messages: 2
Registered: October 2010
Karma:
Junior Member
I'm trying to create an output of an RSS, and it works fine if I don't
check for whether a variable has content or not:

/************************************************
* GET BLOG COMMENTS
********/
$blogCom_filename = 'http://blog.girlscoutsmoheartland.org/?
feed=comments-rss2';
$blogCom_xml = @simplexml_load_file($blogCom_filename);
$ic=0;
while($ic<=10) {
$blogCom_description = $blogCom_xml->channel->item[$ic]->description;
$blogCom_pubTitle = $blogCom_xml->channel->item[$ic]->title;
$blogCom_pubDate = $blogCom_xml->channel->item[$ic]->pubDate;
$blogCom_pubLink = $blogCom_xml->channel->item[$ic]->link;
$blogCom_pubDate = "<span class=''>".date('D, j M y g:i a',
strtotime($blogCom_pubDate))."</span>";

//if ($blogCom_pubTitle) {
$blogCom_disp .= "<p><a href='".$blogCom_pubLink."'
target='_blank'><span class='tiny_import'>".$blogCom_pubTitle."</
span></a>:<br /><b>&#8226;&nbsp;</b>".$blogCom_description."<br />".
$blogCom_pubDate."</p>";
$ic++;
//}

unset($blogCom_description,$blogCom_pubDate);
}
unset($blogCom_filename,$blogCom_xml);


But as soon as I uncomment those two lines in the "if" that checks to
see if $blogCom_pubTitle has any content (if I don't, for some reason
I sometimes get blank comments in the display), I get an error:

Fatal error: Maximum execution time of 30 seconds exceeded in /home/
girlscou/public_html/staff/socialroundup.php on line 41

Weird thing is, the line that's being referenced, is this one:

$blogCom_pubDate = "<span class=''>".date('D, j M y g:i a',
strtotime($blogCom_pubDate))."</span>";

A line that occurs BEFORE the if-statement is magically causing a
timeout only if the if-statement is "on". But works just fine without
the content check.
And if I comment that offending line, it'll still time-out but blame
the next line above it!

I have no clue what's going on. Any suggestions?
Thanks!
Liam
[Message index]
 
Read Message
Read Message
Read Message
Previous Topic: Stats comp.lang.php (last 7 days)
Next Topic: PHP on PIE: framework that combines the best ideas from great PHP projects
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Fri Sep 20 20:40:43 GMT 2024

Total time taken to generate the page: 0.03829 seconds