News Feed
Sections
News Archive


Community Events
php|tek 2008 PHP Conference



feed this:

PHPBuilder.com:
The Ternary Conditional Operator
0 comments :: posted Friday March 07, 2008 @ 12:04:00
voice your opinion now!

The PHPBuilder.com site has a quick reminder about a handy little bit of functionality PHP has to make evaluations quicker - the ternary operator.

This allows you to check for the existence of a variable (or check that the variable has a valid value) and assign a value accordingly. This is very useful when you are dealing with $_GET, $_POST, $_SESSION etc. variables, because you don't know whether the incoming variable will exist, and if it doesn't you might want to assign a default value.

An example is included and explained - evaluating an index in the _GET superglobal to see if it exists. It returns either the value itself or a false.

tagged with: ternary conditional operator structure evaluate


Rob Thompson's Blog:
Switch vs. If
0 comments :: posted Friday February 01, 2008 @ 14:28:00
voice your opinion now!

Rob Thompson has posted about some simple benchmarking he did comparing the speed of a series of "if" statements versus one "switch" with multiple cases.

I got curious about which is actually more efficient at matching a random integer with a set of conditionals. So, I setup a script to create a set of large scripts to test the speed of these different constructs. Using the 'time' command, I measured the speed at which the condition could match a random number.

His results found that the switch statement is generally more than 2 times as fast at matching a simple integer. His tests, however, didn't go through much more than this simple test. It'd be interesting to see what it would do with something more complex (like longer strings or handling the result of an evaluation inside the definition of the switch().

tagged with: switch if evaluate benchmark elseif compare


release package zendframework book application ajax conference PHP5 pecl security mysql code framework database developer releases cakephp job PEAR zend

All content copyright, 2008 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework