I am reading another person's code and here I saw something that I do not understand how to interpret it:
$this->mobile && $content['mobile'] = $this->mobile;
I have always seen && used as a logical operator between boolean expressions and on the right side of the assignment symbol. This seems pretty confusing to me and I couldn't find what it means on php.net.