example.php 478 B

123456789101112131415
  1. <?php
  2. $cfg = <<<EOF
  3. <?php
  4. \$config = array();
  5. \$config['db']['master']['host'] = '{db-server}';
  6. \$config['db']['master']['username'] = '{db-username}';
  7. \$config['db']['master']['password'] = '{db-password}';
  8. \$config['db']['master']['port'] = '{db-port}';
  9. \$config['db']['master']['database'] = '{db-name}';
  10. \$config['db']['master']['charset'] = 'utf8';
  11. \$config['db']['master']['pconnect'] = 0;
  12. \$config['db']['master']['tablepre'] = '{db-tablepre}';
  13. EOF;
  14. return trim($cfg);