34,333
edits
Changes
→PHP Comparison Operators
<table>
<tr style="background:#efefef;">
<th>Operator</th>Description<th>Examples</th>
<tr>
<td>==<td>Equal to<td>Checks if first operand equals second<td>$myVar = 10; <br>if ($myVar == 10)<br>echo 'myVar equals 10';</td>