mirror of
https://github.com/danog/parser.git
synced 2024-12-03 09:57:45 +01:00
017b2e19c3
Signed-off-by: azjezz <azjezz@protonmail.com> Signed-off-by: azjezz <azjezz@protonmail.com>
19 lines
318 B
PHP
19 lines
318 B
PHP
<?php
|
|
|
|
define('a', 1 == 1);
|
|
define('a', 1 === 1);
|
|
define('a', 1 != 1);
|
|
define('a', 1 !== 1);
|
|
define('a', 1 + 2);
|
|
define('a', 1 - 2);
|
|
define('a', 1 / 2);
|
|
define('a', 1 ^ 2);
|
|
define('a', 1 * 2);
|
|
define('a', 1 >> 2);
|
|
define('a', 1 << 2);
|
|
define('a', 1 | 2);
|
|
define('a', 1 & 2);
|
|
define('a', ~2);
|
|
|
|
echo 1 + 2 * 3 / 4 - 5;
|