Is this sort of thing considered OK in PHP?
$foo = $_GET['foo'];
$foo = empty($foo) || !custom_is_valid($foo) ? 'default' : $foo;
Are there cleaner alternatives to this? I'm basically trying to avoid extra table look-ups.
|
|
Is this sort of thing considered OK in PHP?
Are there cleaner alternatives to this? I'm basically trying to avoid extra table look-ups. |
|||
|
|
|
|
As you'll see if you turn
|
||||||||||||||
|
|
|
A class here would make your life a lot easier.
|
||
|
|
|
|
Perhaps instead of just checking if it is valid, run it though a cleaning function that takes a default. Also, I like to use the following function so I don't get warnings on accessing non-existant array keys when running E_STRICT:
|
||
|
|
|
|
How about:
And don't be afraid of the array lookups, they are not that slow :) |
||
|
|
|
|
By default, if you assign $foo the value in $_GET['foo'], $foo is just a reference to the $_GET array index... PHP makes reference copies of variables by default to optimize code. The best way would to write something like this:
|
||
|
|
|
|
With mabwi's advice you can even shorten this to:
|
||
|
|
|
Does custom_is_valid() check for an empty variable? Because being able to remove the empty() and "or not" would go a long way to improving that code. |
||||
|