eq
Equal to.
eq($a, $b);
Example:
if (eq('abcdef', 5)) { … }
if (eq(['a', 'b', 'c', 'd', 'e', 'f'], 5)) { … }
if (eq(6, 5)) { … }
Note: The
$a
value will be passed throughq
function before being compared to the$b
value.
Helper functions.
eq
Equal to.
eq($a, $b);
Example:
if (eq('abcdef', 5)) { … }
if (eq(['a', 'b', 'c', 'd', 'e', 'f'], 5)) { … }
if (eq(6, 5)) { … }
Note: The
$a
value will be passed throughq
function before being compared to the$b
value.