问答详情
源自:-

Call to a member function format() on string 或者 Call to a member function format() on integer

解决办法如下(最好都加上):

    public function freshTimestamp() {

        return time();

    }

    public function fromDateTime($value)

    {

        return $value;

    }

    public function getDateFormat()

    {

        return time();

    }

    protected function asDateTime($value)

    {

        return $value;

    }


提问者:choulee 2018-05-24 00:26

个回答

  • 慕码人7226827
    2020-06-05 14:20:57

    解决了我的报错,用的laravel5.5
    请教为什么这样可以?

  • choulee
    2018-05-24 00:27:29

    解决办法如下(最好都加上):

        public function freshTimestamp() {

            return time();

        }

        public function fromDateTime($value)

        {

            return $value;

        }

        public function getDateFormat()

        {

            return time();

        }

        protected function asDateTime($value)

        {

            return $value;

        }