mirror of
https://github.com/php/php-src.git
synced 2024-12-01 22:03:36 +08:00
11 lines
181 B
PHP
11 lines
181 B
PHP
--TEST--
|
|
Bug #64523: XOR not parsed in INI
|
|
--INI--
|
|
error_reporting = E_ALL ^ E_NOTICE ^ E_STRICT ^ E_DEPRECATED
|
|
--FILE--
|
|
<?php
|
|
echo ini_get('error_reporting');
|
|
?>
|
|
--EXPECTF--
|
|
22519
|