1--TEST--
2Bug #49692: parse_ini_file() throws errors when key contains '/' (forward slash)
3--CREDITS--
4Rafael Dohms <rdohms [at] gmail [dot] com>
5--FILE--
6<?php
7
8var_dump(parse_ini_file('bug49692.ini', true));
9
10?>
11--EXPECT--
12array(1) {
13  ["sitemap"]=>
14  array(2) {
15    ["/home"]=>
16    string(13) "default:index"
17    ["/info"]=>
18    string(12) "default:info"
19  }
20}
21