mirror of
https://github.com/php/php-src.git
synced 2024-12-03 06:44:07 +08:00
11 lines
147 B
PHP
11 lines
147 B
PHP
--TEST--
|
|
INI section allows '='
|
|
--INI--
|
|
arg_separator.input==
|
|
--FILE--
|
|
<?php
|
|
var_dump(ini_get('arg_separator.input'));
|
|
?>
|
|
--EXPECT--
|
|
string(1) "="
|