mirror of
https://github.com/php/php-src.git
synced 2024-11-28 12:26:37 +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) "="
|