1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487
|
--TEST--
Test parse_ini_file() function
--FILE--
<?php
/* Prototype: array parse_ini_file(string $filename [,bool $process_sections]);
Description: parse_ini_file() loads in the ini file specified in filename,
and returns the settings in it in an associative array.
*/
$file_path = dirname(__FILE__);
$parse_string = <<<EOD
; Comment starts with semi-colon(;)
; Section starts with [<section name>]
; start of ini file
[Constans]
one = 1
five = 5
animal = BIRD
Language = PHP
PHP_CONSTANT = 1.2345678
10 = Ten
HELLO = HELLO
[date]
date =
time =
[paths]
path = /usr/local/bin
URL = http://www.php.net
[Decimal]
Decimal_value1 = 100
Decimal_value2 = -100
Decimal_value3 = -2147483647
Decimal_value4 = 2147483647
Decimal_value5 = -2147483648
Decimal_value6 = 2147483648
[Octal]
Octal_value = 0100
[Hex]
Hex_value1 = 0x101
Hex_Value2 = 0x102
Hex_Value2 = 0x103
[Non-alphanumerics_as_values]
;Non-alpha numeric chars without quotes
Non_alpha1 = ;
Non_alpha2 = +
Non_alpha3 = *
Non_alpha4 = %
Non_alpha5 = <>
Non_alpha6 = @
Non_alpha7 = #
Non_alpha8 = -
Non_alpha9 = :
Non_alpha10 = ?
Non_alpha11 = /
Non_alpha12 = \
;These chars have a special meaning when used in the value,
; hence parser throws an error
;Non_alpha13 = &
;Non_alpha14 = ^
;Non_alpha15 = {}
;Non_alpha16 = |
;Non_alpha17 = ~
;Non_alpha18 = !
;Non_alpha19 = $
;Non_alpha20 = ()
Non_alpha1_quotes = ";"
Non_alpha2_quotes = "+"
Non_alpha3_quotes = "*"
Non_alpha4_quotes = "%"
Non_alpha5_quotes = "<>"
Non_alpha6_quotes = "@"
Non_alpha7_quotes = "#"
Non_alpha8_quotes = "^"
Non_alpha9_quotes = "-"
Non_alpha10_quotes = "="
Non_alpha11_quotes = ":"
Non_alpha12_quotes = "?"
Non_alpha13_quotes = "/"
;Non_alpha14_quotes = "\"
Non_alpha15_quotes = "&"
Non_alpha16_quotes = "{}"
Non_alpha17_quotes = "|"
Non_alpha18_quotes = "~"
Non_alpha19_quotes = "!"
;Non_alpha20_quotes = "$"
Non_alpha21_quotes = "()"
[Non-alpha numerics in strings]
;expected error, as the non-alphanumeric chars not enclosed in double quotes("")
Non_alpha_string1 = Hello@world
;Non_alpha_string2 = Hello!world
;Non_alpha_string3 = Hello#world
;Non_alpha_string4 = Hello%world
;Non_alpha_string5 = Hello&world
;Non_alpha_string6 = Hello*world
;Non_alpha_string7 = Hello+world
;Non_alpha_string8 = Hello-world
;Non_alpha_string9 = Hello'world
;Non_alpha_string10 = Hello:world
;Non_alpha_string11 = Hello;world
;Non_alpha_string12 = Hello<world
;Non_alpha_string13 = Hello>world
;Non_alpha_string14 = Hello>world
;Non_alpha_string15 = Hello?world
;Non_alpha_string16 = Hello\world
;Non_alpha_string17 = Hello^world
;Non_alpha_string18 = Hello_world
;Non_alpha_string19 = Hello|world
;Non_alpha_string20 = Hello~world
;Non_alpha_string21 = Hello`world
;Non_alpha_string22 = Hello(world)
[Non-alpha numerics in strings -with quotes]
Non_alpha_string1_quotes = "Hello@world"
Non_alpha_string2_quotes = "Hello!world"
Non_alpha_string3_quotes = "Hello#world"
Non_alpha_string4_quotes = "Hello&world"
Non_alpha_string5_quotes = "Hello*world"
Non_alpha_string6_quotes = "Hello+world"
Non_alpha_string7_quotes = "Hello-world"
Non_alpha_string8_quotes = "Hello'world"
Non_alpha_string9_quotes = "Hello:world"
Non_alpha_string10_quotes = "Hello;world"
Non_alpha_string11_quotes = "Hello<world"
Non_alpha_string12_quotes = "Hello>world"
Non_alpha_string13_quotes = "Hello>world"
Non_alpha_string14_quotes = "Hello?world"
Non_alpha_string15_quotes = "Hello\world"
Non_alpha_string16_quotes = "Hello^world"
Non_alpha_string17_quotes = "Hello_world"
Non_alpha_string18_quotes = "Hello|world"
Non_alpha_string19_quotes = "Hello~world"
Non_alpha_string20_quotes = "Hello`world"
Non_alpha_string21_quotes = "Hello(world)"
[Newlines_in_Values]
String1 = "Hello, world\nGood Morning"
String2 = "\nHello, world
Good Morning\n"
String3 = 'Hello, world\tGood Morning'
String4 = "\n"
String5 = "\n\n"
String6 = Hello, world\tGood Morning
[ReservedKeys_as_Values]
Key1 = YES
Key2 = Yes
Key3 = yEs
Key4 = NO
Key5 = No
Key6 = nO
Key7 = TRUE
Key8 = True
Key9 = tRUE
Key10 = true
Key11 = FALSE
Key12 = False
Key13 = false
Key14 = fAlSE
Key15 = NULL
Key16 = Null
Key17 = nuLL
Key18 = null
[ReservedKeys_as_Keys]
; Expected:error, reserved key words must not be used as keys for ini file
;YES = 1
;Yes = 2
;yEs = 1.2
;YES = YES
;NO = ""
;No = "string"
;nO = "\0"
;TRUE = 1.1
;True = 1
;tRUE = 5
;true = TRUE
;FALSE = FALSE
;False = ""
;false = "hello"
;fAlSE = ""
;NULL = ""
;Null = 0
;nuLL = "\0"
;null = NULL
; end of ini file
EOD;
/* creating parse.ini file */
$file_handle = fopen($file_path."/parse.ini", "w");
fwrite($file_handle, $parse_string);
fclose($file_handle);
echo "*** Test parse_ini_file() function: with various keys and values given in parse.ini file ***\n";
echo "-- ini file without process_sections optional arg --\n";
define('BIRD', 'Humming bird');
$ini_array = parse_ini_file($file_path."/parse.ini");
print_r($ini_array);
echo "\n-- ini file with process_sections as TRUE --\n";
$ini_array = parse_ini_file($file_path."/parse.ini", TRUE);
print_r($ini_array);
echo "*** Done **\n";
?>
--CLEAN--
<?php
unlink(dirname(__FILE__)."/parse.ini");
?>
--EXPECTF--
*** Test parse_ini_file() function: with various keys and values given in parse.ini file ***
-- ini file without process_sections optional arg --
Array
(
[one] => 1
[five] => 5
[animal] => Humming bird
[Language] => PHP
[PHP_CONSTANT] => 1.2345678
[10] => Ten
[HELLO] => HELLO
[date] =>
[time] =>
[path] => /usr/local/bin
[URL] => http://www.php.net
[Decimal_value1] => 100
[Decimal_value2] => -100
[Decimal_value3] => -2147483647
[Decimal_value4] => 2147483647
[Decimal_value5] => -2147483648
[Decimal_value6] => 2147483648
[Octal_value] => 0100
[Hex_value1] => 0x101
[Hex_Value2] => 0x103
[Non_alpha1] =>
[Non_alpha2] => +
[Non_alpha3] => *
[Non_alpha4] => %
[Non_alpha5] => <>
[Non_alpha6] => @
[Non_alpha7] => #
[Non_alpha8] => -
[Non_alpha9] => :
[Non_alpha10] => ?
[Non_alpha11] => /
[Non_alpha12] => \
[Non_alpha1_quotes] => ;
[Non_alpha2_quotes] => +
[Non_alpha3_quotes] => *
[Non_alpha4_quotes] => %
[Non_alpha5_quotes] => <>
[Non_alpha6_quotes] => @
[Non_alpha7_quotes] => #
[Non_alpha8_quotes] => ^
[Non_alpha9_quotes] => -
[Non_alpha10_quotes] => =
[Non_alpha11_quotes] => :
[Non_alpha12_quotes] => ?
[Non_alpha13_quotes] => /
[Non_alpha15_quotes] => &
[Non_alpha16_quotes] => {}
[Non_alpha17_quotes] => |
[Non_alpha18_quotes] => ~
[Non_alpha19_quotes] => !
[Non_alpha21_quotes] => ()
[Non_alpha_string1] => Hello@world
[Non_alpha_string1_quotes] => Hello@world
[Non_alpha_string2_quotes] => Hello!world
[Non_alpha_string3_quotes] => Hello#world
[Non_alpha_string4_quotes] => Hello&world
[Non_alpha_string5_quotes] => Hello*world
[Non_alpha_string6_quotes] => Hello+world
[Non_alpha_string7_quotes] => Hello-world
[Non_alpha_string8_quotes] => Hello'world
[Non_alpha_string9_quotes] => Hello:world
[Non_alpha_string10_quotes] => Hello;world
[Non_alpha_string11_quotes] => Hello<world
[Non_alpha_string12_quotes] => Hello>world
[Non_alpha_string13_quotes] => Hello>world
[Non_alpha_string14_quotes] => Hello?world
[Non_alpha_string15_quotes] => Hello\world
[Non_alpha_string16_quotes] => Hello^world
[Non_alpha_string17_quotes] => Hello_world
[Non_alpha_string18_quotes] => Hello|world
[Non_alpha_string19_quotes] => Hello~world
[Non_alpha_string20_quotes] => Hello`world
[Non_alpha_string21_quotes] => Hello(world)
[String1] => Hello, world
Good Morning
[String2] =>
Hello, world
Good Morning
[String3] => Hello, world Good Morning
[String4] =>
[String5] =>
[String6] => Hello, world Good Morning
[Key1] => 1
[Key2] => 1
[Key3] => 1
[Key4] =>
[Key5] =>
[Key6] =>
[Key7] => 1
[Key8] => 1
[Key9] => 1
[Key10] => 1
[Key11] =>
[Key12] =>
[Key13] =>
[Key14] =>
[Key15] =>
[Key16] =>
[Key17] =>
[Key18] =>
)
-- ini file with process_sections as TRUE --
Array
(
[Constans] => Array
(
[one] => 1
[five] => 5
[animal] => Humming bird
[Language] => PHP
[PHP_CONSTANT] => 1.2345678
[10] => Ten
[HELLO] => HELLO
)
[date] => Array
(
[date] =>
[time] =>
)
[paths] => Array
(
[path] => /usr/local/bin
[URL] => http://www.php.net
)
[Decimal] => Array
(
[Decimal_value1] => 100
[Decimal_value2] => -100
[Decimal_value3] => -2147483647
[Decimal_value4] => 2147483647
[Decimal_value5] => -2147483648
[Decimal_value6] => 2147483648
)
[Octal] => Array
(
[Octal_value] => 0100
)
[Hex] => Array
(
[Hex_value1] => 0x101
[Hex_Value2] => 0x103
)
[Non-alphanumerics_as_values] => Array
(
[Non_alpha1] =>
[Non_alpha2] => +
[Non_alpha3] => *
[Non_alpha4] => %
[Non_alpha5] => <>
[Non_alpha6] => @
[Non_alpha7] => #
[Non_alpha8] => -
[Non_alpha9] => :
[Non_alpha10] => ?
[Non_alpha11] => /
[Non_alpha12] => \
[Non_alpha1_quotes] => ;
[Non_alpha2_quotes] => +
[Non_alpha3_quotes] => *
[Non_alpha4_quotes] => %
[Non_alpha5_quotes] => <>
[Non_alpha6_quotes] => @
[Non_alpha7_quotes] => #
[Non_alpha8_quotes] => ^
[Non_alpha9_quotes] => -
[Non_alpha10_quotes] => =
[Non_alpha11_quotes] => :
[Non_alpha12_quotes] => ?
[Non_alpha13_quotes] => /
[Non_alpha15_quotes] => &
[Non_alpha16_quotes] => {}
[Non_alpha17_quotes] => |
[Non_alpha18_quotes] => ~
[Non_alpha19_quotes] => !
[Non_alpha21_quotes] => ()
)
[Non-alpha numerics in strings] => Array
(
[Non_alpha_string1] => Hello@world
)
[Non-alpha numerics in strings -with quotes] => Array
(
[Non_alpha_string1_quotes] => Hello@world
[Non_alpha_string2_quotes] => Hello!world
[Non_alpha_string3_quotes] => Hello#world
[Non_alpha_string4_quotes] => Hello&world
[Non_alpha_string5_quotes] => Hello*world
[Non_alpha_string6_quotes] => Hello+world
[Non_alpha_string7_quotes] => Hello-world
[Non_alpha_string8_quotes] => Hello'world
[Non_alpha_string9_quotes] => Hello:world
[Non_alpha_string10_quotes] => Hello;world
[Non_alpha_string11_quotes] => Hello<world
[Non_alpha_string12_quotes] => Hello>world
[Non_alpha_string13_quotes] => Hello>world
[Non_alpha_string14_quotes] => Hello?world
[Non_alpha_string15_quotes] => Hello\world
[Non_alpha_string16_quotes] => Hello^world
[Non_alpha_string17_quotes] => Hello_world
[Non_alpha_string18_quotes] => Hello|world
[Non_alpha_string19_quotes] => Hello~world
[Non_alpha_string20_quotes] => Hello`world
[Non_alpha_string21_quotes] => Hello(world)
)
[Newlines_in_Values] => Array
(
[String1] => Hello, world
Good Morning
[String2] =>
Hello, world
Good Morning
[String3] => Hello, world Good Morning
[String4] =>
[String5] =>
[String6] => Hello, world Good Morning
)
[ReservedKeys_as_Values] => Array
(
[Key1] => 1
[Key2] => 1
[Key3] => 1
[Key4] =>
[Key5] =>
[Key6] =>
[Key7] => 1
[Key8] => 1
[Key9] => 1
[Key10] => 1
[Key11] =>
[Key12] =>
[Key13] =>
[Key14] =>
[Key15] =>
[Key16] =>
[Key17] =>
[Key18] =>
)
[ReservedKeys_as_Keys] => Array
(
)
)
*** Done **
|