I've been trying to replicate short circuit evaluation in javascript for assignment.
E.g. in Javascript
var myObject = {foo: 'bar'};
// if myObject is undefined then assign an empty array
var obj = myObject || [];
obj
will now reference myObject
I tried to replicate this in PHP and found that it just turns it into an expression and returns true or false.
I could do this in PHP like this:
$get = $this->input->get() ? $this->input->get() : array();
The problem with this is I don't know what $this->input->get()
is doing behind the scenes so it's not efficient to call the method twice.
So I got creative and found a solution doing it as follows:
// $this->input->get() could return an array or false
$get = ($params = $this->input->get() and $params) ? $params : array();
Problem with this is it may confuse me in the future and it may not be very efficient.
So is there a better way in PHP to assign a variable in a one line expression like this or should I just stick to:
$get = $this->input->get();
if (!$get) {
$get = array();
}
Since PHP 5.3, which you are hopefully using as anything else is ancient, there's the ternary ?:
operator without the middle part (so, the "binary operator"...?):
$get = $this->input->get() ?: array();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With