Chris W. Parker wrote:
> Hello,
> 
> I couldn't find this anywhere on google or PHP's site but I'm pretty
> sure there's an answer to it.
> 
> How can I turn the following into something that resembles the ternary
> operator?
> 
> <?php
> 
>   if($something)
>   {
>     $this = $that;
>   }
> 
> ?>
> 

$this = $something ? $that : null;

-- 
Teach a man to fish...

NEW? | http://www.catb.org/~esr/faqs/smart-questions.html
STFA | http://marc.theaimsgroup.com/?l=php-general&w=2
STFM | http://php.net/manual/en/index.php
STFW | http://www.google.com/search?q=php
LAZY |
http://mycroft.mozdev.org/download.html?name=PHP&submitform=Find+search+plugins

Attachment: signature.asc
Description: OpenPGP digital signature

Reply via email to