mirror of
https://github.com/php/php-src.git
synced 2026-03-24 16:22:37 +01:00
11 lines
242 B
PHP
11 lines
242 B
PHP
--TEST--
|
|
Test bitwise AND, OR, XOR, NOT and logical NOT in INI via error_reporting
|
|
--INI--
|
|
error_reporting = E_ALL & E_NOTICE | E_PARSE ^ E_DEPRECATED & ~E_WARNING | !E_ERROR
|
|
--FILE--
|
|
<?php
|
|
echo ini_get('error_reporting');
|
|
?>
|
|
--EXPECT--
|
|
8204
|