mirror of
https://github.com/php/php-src.git
synced 2025-01-14 06:54:52 +08:00
10 lines
146 B
Plaintext
10 lines
146 B
Plaintext
|
--TEST--
|
||
|
INI section allows '='
|
||
|
--INI--
|
||
|
arg_separator.input==
|
||
|
--FILE--
|
||
|
<?php
|
||
|
var_dump(ini_get('arg_separator.input'));
|
||
|
?>
|
||
|
--EXPECT--
|
||
|
string(1) "="
|