Home>Article>CMS Tutorial> How to configure the database in phpcms

How to configure the database in phpcms

王林
王林 Original
2020-02-06 11:42:21 3098browse

How to configure the database in phpcms

Database configuration file location: caches/configs/database.php

Open this configuration file and add our database configuration information. The database configuration information is a two-dimensional array structure. The default is default. Multiple database links can be configured according to the default structure (such as: extended_1)

The details are as follows:

 array (     'hostname' => 'localhost',     'database' => 'phpcms',     'username' => 'admin',     'password' => 'admin',     'tablepre' => 'v9_',     'charset' => 'gbk',     'type' => 'mysql',     'debug' => true,     'pconnect' => 0,     'autoconnect' => 0   ), /* 以下默认不存在 */   'extended_1' => array (     'hostname' => '10.10.125.2',     'database' => 'phpcms',     'username' => 'admin',     'password' => 'admin',     'tablepre' => 'v9_',     'charset' => 'gbk',     'type' => 'mysql',     'debug' => true,     'pconnect' => 0,     'autoconnect' => 0   ), ); ?>

Modify according to your database connection information After modifying the above configuration content, save the database configuration file.

After configuring the database, you can select the database configuration file, database, etc. through the database model class below!

The database model is located in: phpcms/model/ directory

db_config = pc_base::load_config('database');     $this->db_setting = 'default';     $this->table_name = 'test';     parent::__construct();   }  } ?>

Recommended related articles and tutorials:phpcms tutorial

The above is the detailed content of How to configure the database in phpcms. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn