Jump to content

efficiency issues


dimitris

Recommended Posts

Hi all,

 

I would like to ask about two programming techniques, regarding their efficiancy. First,

 

is there actually any difference between

 

<?php
function example() {
if (...) { ... $return_value = value1;}
else if (...) { ... $return_value = value2;}
else (...) { ... $return_value = value3;}
return $return_value;
}?>

 

and this one

 

<?php
function example() {
if (...) { ... return $value1;}
else if (...) { ... return $value2;}
else { ... return $value3;}
}?>

 

Secondly,

 

<?php
$sql = "SELECT ... FROM ... WHERE..."; //  or whatever query
$result = mysqli_query($sql) or die(mysqli_error());
?>

 

isn't it better this one?

 

<?php
$result = mysqli_query("SELECT ... FROM ... WHERE...") or die(mysqli_error());
?>

 

I've seen the first ones in both cases used and was wondering if the second ones are improvements or not... Is there any point in trying to make the code as efficient as possible in PHP, or is it a waste of time? I've being used to think like this since I'm coming from a C/C++ background but don't know if it's worth going to the bottom in PHP, does it really make any difference? Sorry if my questions are naive...

 

dimitris

Link to comment
https://forums.phpfreaks.com/topic/113118-efficiency-issues/
Share on other sites

For your first one: Yes, there is a difference. You are allocating more space in memory for the first code sample because you are setting a variable, the second one is slightly more efficient.

 

For your second one: Yes the second one is more efficient (in the same way as your first question), but for debugging purposes, it is nice to be able to see what your sql string actually is, especially when it is being created dynamically. I personally only use the first way when debugging.

Link to comment
https://forums.phpfreaks.com/topic/113118-efficiency-issues/#findComment-581081
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.