parser/phpast/samples/equals.php

6 lines
64 B
PHP

<?php
$foo == $bar;
$foo === $bar;
$foo != $bar;
$foo !== $bar;