19 lines
267 B
PHP
19 lines
267 B
PHP
<?php namespace UElearning\Database;
|
|
/**
|
|
* @file
|
|
* 使用者資料表
|
|
*
|
|
* 此檔案針對使用者資料表的功能。
|
|
*
|
|
* @filesource
|
|
*/
|
|
|
|
class DBUser {
|
|
/**
|
|
* 資料表名稱
|
|
* @type string
|
|
*/
|
|
private $form_name = 'user';
|
|
|
|
|
|
} |