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

Home » Imported messages » comp.lang.php » Order/Timing of Execution of PHP
Show: Today's Messages :: Polls :: Message Navigator
Switch to threaded view of this topic Create a new topic Submit Reply
Order/Timing of Execution of PHP [message #176152] Sun, 27 November 2011 12:01 Go to next message
Jeff Gaines is currently offline  Jeff Gaines
Messages: 11
Registered: October 2011
Karma: 0
Junior Member
A comment in this group made me look at a website again. It has a couple
of 'photo albums on it and when the visitor clicks on either of the album
pages it uses
imagecreatefromjpeg/imagecreatetruecolor/imagecopyresized/imagejpeg to
create thumbnails from the full sized images with links to them.

I decided that I should create the thumbnails locally and then upload them
to save visitors wondering why there was a delay when visiting the pages.
I use the following code:

<div id="content">
<article>
<section>
<br />
<br />
<p>
Select Album To Create
<br />
</p>

<hr>
<a href="?run=all">All</a>
<br>
<a href="?run=album">Album Only</a>
<br>
<a href="?run=george">George\'s Album Only</a>
<br />
<br />

<?php

if (isset($_GET['run']))
$linkchoice=$_GET['run'];
else $linkchoice='';

switch($linkchoice)
{
case 'album' :
echo('<b>Creating Thumbnails For Album...</b>');
echo('<br /><br />');
createalbum();
echo ('Album Thumbs Created');
echo ('<br /><br />');
break;

case 'george' :
echo('<b>Creating Thumbnails For George\'s Album...</b>');
echo ('<br /><br />');
creategeorge();
echo ('George\'s Thumbs Created');
echo ('<br /><br />');
break;
}
?>

</section>
</article>
</div>

What this does is show links for 2 options and then re-post the page.

It works but doesn't echo 'Creating Thumbnails' etc. until it has called
the function and returned from it.

Is there a way to get these statements echoed before it calls the function
or is this just the way php/server side functions work, in which case
perhaps I should use Java?

--
Jeff Gaines Wiltshire UK
Indecision is the key to flexibility
Re: Order/Timing of Execution of PHP [message #176153 is a reply to message #176152] Sun, 27 November 2011 14:14 Go to previous messageGo to next message
Denis McMahon is currently offline  Denis McMahon
Messages: 634
Registered: September 2010
Karma: 0
Senior Member
On Sun, 27 Nov 2011 12:01:47 +0000, Jeff Gaines wrote:

> It works but doesn't echo 'Creating Thumbnails' etc. until it has called
> the function and returned from it.

Possibly caused by buffering on the server, or even the client waiting to
render output until it's able to decide what is to be rendered and how?

I think it's better to do all the processing first, and then send the web
page afterwards, rather then send html in dribs and drabs while you're
doing the processing. This isn't the way I used to think, but it has
advantages. For example, you can trap and react to errors in the
processing by issuing http error headers, which you can't do if you've
started output.

Rgds

Denis McMahon
Re: Order/Timing of Execution of PHP [message #176154 is a reply to message #176152] Sun, 27 November 2011 14:43 Go to previous messageGo to next message
Jerry Stuckle is currently offline  Jerry Stuckle
Messages: 2598
Registered: September 2010
Karma: 0
Senior Member
On 11/27/2011 7:01 AM, Jeff Gaines wrote:
>
> A comment in this group made me look at a website again. It has a couple
> of 'photo albums on it and when the visitor clicks on either of the
> album pages it uses
> imagecreatefromjpeg/imagecreatetruecolor/imagecopyresized/imagejpeg to
> create thumbnails from the full sized images with links to them.
>
> I decided that I should create the thumbnails locally and then upload
> them to save visitors wondering why there was a delay when visiting the
> pages. I use the following code:
>
> <div id="content">
> <article>
> <section>
> <br />
> <br />
> <p>
> Select Album To Create
> <br />
> </p>
>
> <hr>
> <a href="?run=all">All</a>
> <br>
> <a href="?run=album">Album Only</a>
> <br>
> <a href="?run=george">George\'s Album Only</a>
> <br />
> <br />
>
> <?php
>
> if (isset($_GET['run']))
> $linkchoice=$_GET['run'];
> else $linkchoice='';
>
> switch($linkchoice)
> {
> case 'album' :
> echo('<b>Creating Thumbnails For Album...</b>');
> echo('<br /><br />');
> createalbum();
> echo ('Album Thumbs Created');
> echo ('<br /><br />');
> break;
>
> case 'george' :
> echo('<b>Creating Thumbnails For George\'s Album...</b>');
> echo ('<br /><br />');
> creategeorge();
> echo ('George\'s Thumbs Created');
> echo ('<br /><br />');
> break;
> }
> ?>
>
> </section>
> </article>
> </div>
>
> What this does is show links for 2 options and then re-post the page.
>
> It works but doesn't echo 'Creating Thumbnails' etc. until it has called
> the function and returned from it.
>
> Is there a way to get these statements echoed before it calls the
> function or is this just the way php/server side functions work, in
> which case perhaps I should use Java?
>

No guarantee as long as you're using HTTP.

When you output something to the client, it goes in a PHP buffer. Once
the buffer fills up, the contents are forwarded on.

Now - you can use flush() to force the PHP buffer to be emptied.
However, it can still be buffered by the server, depending on the server
and its settings. And once it has been sent, the client may or may not
display the data immediately, depending on the client and its settings.

Changing to java won't help with the server and client settings, unless
you have an applet running on the client and using other than http (i.e.
another tcp/ip socket) to perform the communications.

But then I also wouldn't do this online - I'd just have a CLI script
which does them all, logging results to a file. Then as new pictures
are uploaded, create the thumbnails right then. It doesn't take that long.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex(at)attglobal(dot)net
==================
Re: Order/Timing of Execution of PHP [message #176155 is a reply to message #176153] Mon, 28 November 2011 00:53 Go to previous messageGo to next message
Thomas 'PointedEars'  is currently offline  Thomas 'PointedEars'
Messages: 701
Registered: October 2010
Karma: 0
Senior Member
Denis McMahon wrote:

> On Sun, 27 Nov 2011 12:01:47 +0000, Jeff Gaines wrote:
>> It works but doesn't echo 'Creating Thumbnails' etc. until it has called
>> the function and returned from it.
>
> Possibly caused by buffering on the server, or even the client waiting to
> render output until it's able to decide what is to be rendered and how?
>
> I think it's better to do all the processing first, and then send the web
> page afterwards, rather then send html in dribs and drabs while you're
> doing the processing. This isn't the way I used to think, but it has
> advantages. For example, you can trap and react to errors in the
> processing by issuing http error headers, which you can't do if you've
> started output.

The disadvantage of it is that the user would have to wait for all PHP
processing to finish before seeing any content. I have recently heard of an
approach to mitigate, even solve, this problem, but I do not remember how it
worked.


PointedEars
--
> If you get a bunch of authors […] that state the same "best practices"
> in any programming language, then you can bet who is wrong or right...
Not with javascript. Nonsense propagates like wildfire in this field.
-- Richard Cornford, comp.lang.javascript, 2011-11-14
Re: Order/Timing of Execution of PHP [message #176162 is a reply to message #176154] Mon, 28 November 2011 11:07 Go to previous message
Jeff Gaines is currently offline  Jeff Gaines
Messages: 11
Registered: October 2011
Karma: 0
Junior Member
On 27/11/2011 in message <jatibg$ihe$1(at)dont-email(dot)me> Jerry Stuckle wrote:

> But then I also wouldn't do this online - I'd just have a CLI script which
> does them all, logging results to a file. Then as new pictures are
> uploaded, create the thumbnails right then. It doesn't take that long.

Many thanks, Jerry.

I have never used php at the command line but it seems an ideal solution.

--
Jeff Gaines Wiltshire UK
There are 3 types of people in this world. Those who can count, and those
who can't.
  Switch to threaded view of this topic Create a new topic Submit Reply
Previous Topic: Stats comp.lang.php (last 7 days)
Next Topic: Associative Array
Goto Forum:
  

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

Current Time: Fri Sep 20 04:42:12 GMT 2024

Total time taken to generate the page: 0.02565 seconds