summaryrefslogtreecommitdiff
path: root/Zend/tests/bug52508.phpt
blob: a9b12e793cf1d9e814fa8ccb0d55dd12dfbd6403 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--TEST--
Bug #52508 (newline problem with parse_ini_file+INI_SCANNER_RAW)
--FILE--
<?php

$file = __DIR__ .'/bug52508.ini';

file_put_contents($file, "a = 1");

$ini_array = parse_ini_file($file, true, INI_SCANNER_RAW);
var_dump($ini_array);

unlink($file);

?>
--EXPECT--
array(1) {
  ["a"]=>
  string(1) "1"
}