Jump to content

Recommended Posts

I'm using the MVC pattern for a site, and as such have a 'view' page which is mostly HTML, but with some foreach loops. Something like the following (but more HTML, usually):

<?php foreach ( $array as $a ) : ?>
<p><?=$a['var1']?></p>
<p><?=$a['var2']?></p>
<p><?=$a['var3']?></p>
<?php endforeach; ?>

 

However there are a few odd occasions where I use a lot of conditional statements to add small amounts of HTML. Something like:

 

<?php if ( $a['var1'] ) : ?>
<p>Something</p>
<?php else : ?>
<p>Something else</p>
<?php endif; ?>

 

I could use this, which I'm guessing might be a bit quicker, since it's only one PHP block:

 

<?php
if ( $a['var1'] )
{
  echo '<p>Something</p>'
}
else
{
  echo '<p>Something else</p>';
}
?>

 

Anyone have any stats on the speed difference?

Probably only a few nano-seconds each.

 

Just for fun I timed:

for( $i = 0; $i<1000; $i++) { ?>
<?=$i?> one
<?=$i?> two
<?=$i?> three
<?php }; ?>

against

for( $i = 0; $i<1000; $i++) { 
echo "$i one
$i two
$i three";
}

 

and most of the time, #2 was faster.

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.