mirror of
https://github.com/php/php-src.git
synced 2024-11-27 11:53:33 +08:00
7 lines
97 B
PHP
7 lines
97 B
PHP
--TEST--
|
|
Testing | and & operators
|
|
--FILE--
|
|
<?php $a=8; $b=4; $c=8; echo $a|$b&$c?>
|
|
--EXPECT--
|
|
8
|