18 lines
264 B
PHP
18 lines
264 B
PHP
<?php
|
|
|
|
namespace Model\Constant;
|
|
|
|
use Core\Db;
|
|
|
|
class Constant
|
|
{
|
|
protected static string $tableName = '';
|
|
protected array $rows = [];
|
|
|
|
public function __construct()
|
|
{
|
|
$this->rows = Db::getRows('select * from ' . self::$tableName);
|
|
}
|
|
|
|
|
|
} |