大佬留言PHP8.3以下版本 直接使用webman提供的webman/think-orm
更方便、健全(见文末的留言)。
PHP 环境换为 8.4 使用webman/think-orm
报了个错;所以换topthink/think-orm
,根据文档其支持PHP8.0+,但实际情况还是报相同的错(错误的暴力修改 在最后)。
业务初始化
业务初始化文档地址 先熟读此文档,再做后续设置。topthink/think-orm
的文档说明,安装后,只需要设置数据库配置信息即可。
use think\facade\Db;
Db::setConfig([
//配置数据,看官网
]);
<?php
//命名空间根据自己的实际情况来
namespace app\init;
use Webman\Bootstrap;
use Workerman\Worker;
use think\facade\Db;
// use support\Log;
//注意类名需要和文件名一致
class ThinkOrmInit implements Bootstrap
{
public static function start(?Worker $worker)
{
$databaseConfig = config('think_orm');//在config目录下建的一个think_orm.php配置文件,文件名随便,配置复制官网的
// Log::info('databaseConfig:'.json_encode($databaseConfig));
if ($databaseConfig) {
Db::setConfig($databaseConfig);
// Db::connect();//AI生成是有此,但官方文档不需要,所以没要
}
}
}
4.2 修改config目录下的 bootstrap.php 配置:
<?php
return [
support\bootstrap\Session::class,
support\bootstrap\LaravelDb::class,
app\init\ThinkOrmInit::class,//是的就是增加这个
];
PHP的 php.ini
文件开启 extension=pdo_mysql
。
4.3 定义数据模型、数据的写入。注: 只测了模型数据写入,Db::name('user')->save($data);
这样的数据写入没测试试。
只在前面提到的环境下测试,其他环境下需要进一步验证。
下面描述的异常可能是我配置信息没设置对,导致$name
是null触发的,熟悉 think-orm
的朋友,指导一下谢谢。
异常内容如下:
ErrorException: think\DbManager::connect(): Implicitly marking parameter $name as nullable is deprecated, the explicit nullable type must be used instead in E:\x\项目\vendor\topthink\think-orm\src\DbManager.php:221
我的修改:找到文件、行,然后直接修改
221行
//原
public function connect(string $name = null, bool $force = false)
//改后 string $name 前加个 ? 号
public function connect(?string $name = null, bool $force = false)
234行也有同样的错:
//原
protected function instance(string $name = null, bool $force = false): ConnectionInterface
//改后
protected function instance(?string $name = null, bool $force = false): ConnectionInterface
感谢分享。
为了避免误导,这里说明下
整个分享解决问题的路线就错了。webman/think-orm本身没有问题,但是你又自己实现了一遍webman/think-orm的逻辑,并且逻辑里没有考虑心跳、分页配置等逻辑。
最后PHP8.4刚发布不久,目前市面上很多composer组件并不支持PHP8.4,不建议现在就开始使用PHP8.4,会给自己找来很多麻烦,就比如这篇文章。
好的 等待webman/think-orm的更新
只要不高于 PHP8.4 ,其他的PHP8.x webman/think-orm 是可以正常使用的,是吧?
白说了
不是等 webman/think-orm 更新,是等 thinkphp官方的 topthink/think-orm 更新。
8.0-8.3 都可以正常使用 topthink/think-orm
V3.0.28 就已经对8.4做兼容处理了