文章 2023-04-16 来自:开发者社区

PHP:laravel自定义Model报错:$table must not be defined/$table must be string

依赖 composer.json{ "require": { "php": "^8.0.2", "laravel/framework": "^9.19" } } 自定义的Modelclass ArticleModel extends BaseModel { protected string $table = 'tb_article'; }...

文章 2023-04-15 来自:开发者社区

PHP:laravel日期序列化自定义默认日期格式

通过 Traits 实现日期序列化<?php namespace App\Traits; use DateTimeInterface; trait SerializeDate { /** * 为 array / JSON 序列化准备日期格式 * * @param \DateTimeInterface $date * @return str...

文章 2023-04-15 来自:开发者社区

PHP:laravel自定义分页page查询方法

方式一使用 Builder 类提供的方法<?php /** * Set the limit and offset for a given page. * * @param int $page * @param int $perPage * @return $this */ public function forPage($page, $perPage = 15) { ...

本页面内关键词为智能算法引擎基于机器学习所生成,如有任何问题,可在页面下方点击"联系我们"与我们沟通。

产品推荐

PHP学习站

PHP学习资料大全

+关注