7db088250d
stylive_519_2
36 lines
756 B
PHP
36 lines
756 B
PHP
<?php
|
|
/**
|
|
* Notes:私域通-直播
|
|
* Created on: 2022/05/07 13:38
|
|
* Created by: dengbw
|
|
*/
|
|
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
class Syt_live_model extends HD_Model
|
|
{
|
|
private $table_name = 'lc_syt_live';
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct($this->table_name, 'default');
|
|
}
|
|
|
|
/**
|
|
* Notes:直播状态
|
|
* Created on: 2022/5/19 11:23
|
|
* Created by: dengbw
|
|
* @param string $id
|
|
* @return array|mixed
|
|
*/
|
|
public function lStatusAry($id = '')
|
|
{
|
|
$arr = [0 => '直播未开始', 1 => '直播已开始', 2 => '直播已结束'];
|
|
if (strlen($id)) {
|
|
return $arr[$id];
|
|
} else {
|
|
return $arr;
|
|
}
|
|
}
|
|
}
|