Operator Php

$username = 'james';
$domain = '@example.com';
$username = $username . $domain;
// Concatenate with the combined operator
$username .= $domain;
?>