PHP code example of phoole / config

1. Go to this page and download the library: Download phoole/config library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

phoole / config example snippets


  use Phoole\Config\Config;
  use Phoole\Env\Environment;

  // load server environment from '.env' file
  (new Environment())->load(__DIR__ . '/.env');

  // create config instance with the config file loader
  $config = new Config(getenv('CONFIG_DIR'), getenv('APP_ENV'));

  // object access of $config
  $db_config = $config->get('db');
  

    // system.php
    return [
        'tmpdir' => '/usr/local/tmp',
        // ...
    ];
    

    $dir = $config->get('system.tmpdir');
    

  return [
      'tmpdir' => '/var/local/tmp',
      ...
  ];
  

  return [
      // a local filesystem cache driver
      'local' => [
          'driver' => 'filesystem',
          'params' => [
              'root_dir'   => '${system.tmpdir}/cache', // use reference here
              'hash_level' => 2
          ]
      ],
      ...
  ];
  

  // now reference is something like '%{system.tmpdir}%'
  $config->setReferencePattern('%{', '}%');
  

  $tmpdir = $config->get('ENV.APP_TMPDIR');
  

  return [
      'tmpdir' => '${ENV.APP_TMPDIR}'
  ];
  

  // returns the db config array
  $db_config = $config->get('db');

  // returns a string
  $db_host = $config->get('db.auth.host');
  

  // db config file
  return [
      // array notation
      'auth' => [
          'host' => 'localhost',
          'port' => 3306
      ],

      // flat notation
      'auth.user' => 'dbuser'
  ];
  

  $newconf = $config->with('redis', ['host' => 'localhost']);
  

  config/
   |
   |___ production/
   |       |
   |       |___ host1/
   |       |      |___ db.php
   |       |      |___ redis.php
   |       |
   |       |___ db.php
   |
   |___ dev/
   |     |
   |     |___ redis.php
   |     |___ db.php
   |
   |___ db.php
   |___ redis.php
   |___ system.php