database()

2018-06-13 17:23 更新

作用:獲取數(shù)據(jù)庫結(jié)構(gòu)配置。

語法: mixed database([string $table][, $with_attr])

參數(shù)

  • $table 設(shè)置將要獲取的表
  • $with_attr 同時獲取字段屬性

返回值

  • 如果僅提供 $table 參數(shù),則返回只包含字段名的索引數(shù)組,不存在則返回 null。
  • 如果同時提供 $table$with_attr 參數(shù),則返回表字段及其屬性構(gòu)成的索引數(shù)組,不存在則返回 null。
  • 如果未提供任何參數(shù),則返回整個數(shù)據(jù)庫結(jié)構(gòu)數(shù)組。

說明

在配置目錄中,與 database() 函數(shù)相關(guān)聯(lián)的是 database.php 文件,在第一次調(diào)用 database() 函數(shù)時,系統(tǒng)會將 database.php 文件所返回的配置數(shù)組填充到 database() 函數(shù)中。

示例

<?php
print_r(database()); //打印數(shù)據(jù)庫結(jié)構(gòu)
print_r(database('user')); //打印用戶表,但不包含字段屬性
print_r(database('user', true)); //打印用戶表,同時包含字段屬性
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號