a79ce734e1
a79ce734e1

Reputation: 875

Restate parent variable PHP

Instead of restating the parent variable inside itself ($username), is there some other way to do it?

$username = ($profile_is_admin == true) ? $username . $admin_symbol : $username;

Upvotes: 0

Views: 69

Answers (3)

deceze
deceze

Reputation: 522024

if ($profile_is_admin) {
    $username .= $admin_symbol;
}

Upvotes: 7

Nick Pickering
Nick Pickering

Reputation: 3185

Try this?

$username .= ($profile_is_admin) ? $admin_symbol : '';

Upvotes: 3

Winston
Winston

Reputation: 1805

Like this

$username .= ($profile_is_admin == true) ? $admin_symbol : '';

Upvotes: 1

Related Questions