20 lines
367 B
PHP
Executable File
20 lines
367 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Model;
|
|
|
|
class Pls extends BaseModel
|
|
{
|
|
|
|
protected $casts = [
|
|
'result' => 'array',
|
|
'daxiao' => 'array',
|
|
'jiou' => 'array',
|
|
'zhihe' => 'array',
|
|
];
|
|
|
|
public function getCloseTime($earlySecond) {
|
|
$time = strtotime($this->close_time);
|
|
return date('Y-m-d H:i:s', $time - $earlySecond);
|
|
}
|
|
}
|