Jump to content

[SOLVED] Which Loads Faster?


Leeder

Recommended Posts

As a side note

 

functions work better when used correctly

 

ie

<?php

switch ($user['vipage']) {
case "0":
  break;
case "1":
  break;
case "2":
  break;
case "3":
  break;
default:
  echo "";
  break;
}

?>

 

runs quicker than

 

<?php

if ($user['vipage'] == 0)
{
	echo "";
}elseif ($user['vipage'] == 1)
{
	echo "";
}elseif ($user['vipage'] == 2)
{
	echo "";
}elseif ($user['vipage'] == 3)
{
	echo "";
}
?>

 

 

and yep again dumb

Link to comment
Share on other sites

<?php

if ($user['vipage'] == 0)
{
	echo "";
}elseif ($user['vipage'] == 1)
{
	echo "";
}elseif ($user['vipage'] == 2)
{
	echo "";
}elseif ($user['vipage'] == 3)
{
	echo "";
}
?>

 

That's so ugly lol

 

<?php

if ($user['vipage'] == 0) {
echo "";
}

elseif ($user['vipage'] == 1) {
echo "";
}

elseif ($user['vipage'] == 2) {
echo "";
}

elseif ($user['vipage'] == 3) {
echo "";
}

?>

 

Much better ^-^

Link to comment
Share on other sites

Why worry about the speed?

The difference in so minute no one would know!

 

Well when you are making a MASSIVE program/application a half second here and there add up to a lot of time. But for a small application it doesn't matter as much, BUT you should always be aware of speed.

Link to comment
Share on other sites

Why worry about the speed?

The difference in so minute no one would know!

 

Well when you are making a MASSIVE program/application a half second here and there add up to a lot of time. But for a small application it doesn't matter as much, BUT you should always be aware of speed.

 

True, but I think he wont be making big scripts for a while...

Link to comment
Share on other sites

Why worry about the speed?

The difference in so minute no one would know!

 

Well when you are making a MASSIVE program/application a half second here and there add up to a lot of time. But for a small application it doesn't matter as much, BUT you should always be aware of speed.

 

True, but I think he wont be making big scripts for a while...

 

Why, because of my coding style?

Link to comment
Share on other sites

On top of that speed question doing this:

 

echo "{$var['1']}";

 

takes more time to process than this:

 

echo "Variable 1: " . $var['1']; 

//or even
echo "Variable 1: ", $var['1']; 

 

If you are concerned about speed. Either or It all depends on your coding style and what you are trying to do. If you have 10 variations switch is better where as if there is only 2, probably if/elseif/else. Either way it is like 1 millionth of a second difference which does not make much of a difference at all.

 

 

Link to comment
Share on other sites

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.