zoukankan      html  css  js  c++  java
  • 时间戳问题

    只管模型的 事

    class Guestinfo extends Model
    {

    // 开启自动写入时间戳字段
    protected $autoWriteTimestamp = 'int';
    // 定义时间戳字段名
    protected $createTime = 'create_time';
    protected $updateTime = 'update_time';

    /**
    * 留言板模型
    * @author apolloren
    */

    // 获取器修改时间格式
    public function getcreatetimeAttr($value, $data)
    {
    $value = $value ? $value : (isset($data['refreshtime']) ? $data['create_time'] : '');
    return is_numeric($value) ? date("Y-m-d H:i:s", $value) : $value;
    }

    public static function guestinfo()
    {

    $list=Guestinfo::order('id desc')->paginate(10);
    return $list;

    }

    public static function add($username,$title,$content)
    {

    $user = new Guestinfo;
    $user->username = $username;
    $user->title = $title;
    $user->content = $content;

    $user->save();
    // 获取自增ID
    echo $user->id;

    }


    }

  • 相关阅读:
    服务器 空间
    android 手动打包
    sql server 2000 完全卸载 2
    apk 优化
    asp.net 画 数据图表
    java 运行 bat win linux
    vb 生成 批处理
    国内平台
    委托
    observer 观察者模式
  • 原文地址:https://www.cnblogs.com/apolloren/p/12038763.html
Copyright © 2011-2022 走看看