17 lines
185 B
PHP
17 lines
185 B
PHP
|
<?php
|
||
|
/**
|
||
|
* A test local ini file
|
||
|
*/
|
||
|
|
||
|
return <<<INI
|
||
|
|
||
|
[database]
|
||
|
hostname = testhost
|
||
|
username = testuser
|
||
|
password = testpw
|
||
|
database = testdb
|
||
|
|
||
|
[config]
|
||
|
admin_email = admin@test.it
|
||
|
INI;
|