And Operator

and is the logical and operator. It is synonym with the symbol and operator &&, though it has a different precedence level.

and is a PHP keyword.

<?php

$a = 1 & 2;

?>

Related : Logical operators, Keyword