I have a string that I want to append it some other string. let's say:

$my_string = 'Hello';

$my_string .= ' there';

this would return 'Hello there'.

I want to make this conditional like this:

$my_string = 'Hello';

$append = 'do';

if ( $append == 'do' ) {

    $my_string .= ' there';

}

Now, I want to use a ternary operation to do this, but all the examples I came across are for if/else wich will be something like:

$my_string .= ( $append == 'do' ) ? ' there' : '';

so is it possible to do it with only IF and without else?

Thanks.

link|improve this question

4  
can't you just concatenate a blank string for else? – Claudiu Jun 22 '11 at 23:13
1  
Is it okay to just use an expression that is less complicated, e.g. not using the ternary operator, but just a logical one? – hakre Jun 23 '11 at 0:43
feedback

6 Answers

up vote 6 down vote accepted

No... ternary means three parts you need the condition, the true part, and the false part

link|improve this answer
feedback

Nope. However, the opposite is possible. Here's a quote from the PHP docs:

Since PHP 5.3, it is possible to leave out the middle part of the ternary operator. Expression expr1 ?: expr3 returns expr1 if expr1 evaluates to TRUE, and expr3 otherwise.

http://php.net/manual/en/language.operators.comparison.php

link|improve this answer
feedback

An alternative way to check for a condition and then append to the string would be:

 ($append == 'do')  and  ($my_string .= ' there');

But that's really just an if displacement then. But comes close to an "ternary without the else".

link|improve this answer
No need for brackets. – hakre Jun 23 '11 at 0:41
@hakre: Had it originally without. But I noticed that's often better understood for explanation. – mario Jun 23 '11 at 0:47
Yeah I was shortly irritated as I stumbled over them. However, it can make things easier to read, indeed. Like the whitespace which could be dropped as well but nobody would do, at least not overall. – hakre Jun 23 '11 at 0:52
feedback

You can do this:

( $append == 'do' ) ? $my_string .= ' there' : $noop ;

If you invert the statement so that the ternary is on the outside instead of the inside of the assignment, then you can put an entire statement in the TRUE part, then just do something that is a no-operation command in the ELSE part.

link|improve this answer
feedback

combining mellamokb and Andz you can do this:

( $append != 'do' ) ?: $my_string .= ' there';
link|improve this answer
1  
+1 was going to say that, but couldn't properly test it on ideone :( It does seem to be getting borderline unreadable and I wouldn't recommend it. – mellamokb Jun 22 '11 at 23:25
That's useless, it's the wrong operator. Use OR or ||, but not ?. – hakre Jun 23 '11 at 0:42
feedback

You could create a function that does what you want. Instead of writing out the if statement each time.

function doAppend($doIt, &$value, $appendValue)
{
    if($doIt) $value .= $appendValue;
}

Call it with:

doAppend($append == 'do', $my_string, ' there');

Note how the second parameter is by reference, so it will be changed in the calling code too.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.