`
xieye
  • 浏览: 831343 次
  • 性别: Icon_minigender_1
  • 来自: 南京
社区版块
存档分类
最新评论

php的db类库Eloquent单独使用系列(4)- 事件监听

    博客分类:
  • PHP
阅读更多
我的Eloquent单独使用系列文章
php的db类库Eloquent单独使用系列(1)
php的db类库Eloquent单独使用系列(2) - 分页
php的db类库Eloquent单独使用系列(3) - sql日志
php的db类库Eloquent单独使用系列(4)- 事件监听
php的db类库Eloquent单独使用系列(5)- 模型转数组
php的db类库Eloquent单独使用系列(6)- 一对一关联
php的db类库Eloquent单独使用系列(7)- 一对多关联
php的db类库Eloquent单独使用系列(8)- 多对多关联
php的db类库Eloquent单独使用系列(9)- 多对多关联 - 表关联自身
php的db类库Eloquent单独使用系列(10)- 多对多关联 - 远程一对多
php的db类库Eloquent单独使用系列(11)- 多对多关联 - 添加模型属性
php的db类库Eloquent单独使用系列(12)- 结果集模型转数组 - 2


本系列文章的目的就是脱离laravel环境使用Eloquent,因为它好用。
本系列文章所有代码均测试通过。Eloquent版本:5.4.27

本文的目的是使用事件,即钩子函数,用于保存前后,修改数据模型前后,删除前后。

下面的代码假定使用了一个表test2。

主要是4个文件,名字都可以自己改。路径也可以自己改,只要改namespace即可。
1)User是模型文件,里面啥都没有,从我目前测试结果看,也无法在类里面写监听。
2)程序主文件。Ill.php
3)sql日志事件文件。SqlListener
4)User观察者类。需被手动注册到User类上面。
文件层次:
app
  - control
     - Ill.php
  - model
     - SqlListener.php
     - User.php
     - UserObserver.php
模型文件User.php
<?php
namespace app\model;
use \Illuminate\Database\Eloquent\Model;

/**
 * User模型类
 */
class User extends Model 
{
    protected $table = 'test2';
    public $timestamps = false;
    
    // 这是我自己添加的,记录错误信息
    private $errinfo='';
    
    public function set_errinfo($info)
    {
        $this->errinfo = $info;
    }
    
    public function get_errinfo()
    {
        return $this->errinfo ;
    }
}


观察者类UserObserver.php
<?php
namespace app\model;
use app\model\User;

/**
 * User类的观察者。放置了各种钩子函数
 *
 */
class UserObserver
{
    
    /**
     * 添加用户钩子
     *
     * 特别点在于,前置类型的钩子,如返回假则后面不执行。
     * 后缀是ing的钩子函数,就是前置类型的钩子。如updating,deleting等。共5个。
     *
     * @param  User  $user
     * @return void
     */
    public function creating(User $user)
    {
        if ( strlen( $user->user) <2  ) {
            $user->set_errinfo("creating: 用户名至少两个字符");
            return false;
        }
    }
   
    /**
     * 添加用户钩子
     *
     * @param  User  $user
     * @return void
     */
    public function created(User $user)
    {
        echo "<b>in UserObserver.created:". $user->id ."</b><br>";
    }
    
    /**
     * 修改用户钩子
     *
     * @param  User  $user
     * @return void
     */
    public function updated(User $user)
    {
        echo "<b>in UserObserver.updated:". $user->id ."</b><br>";
    }
}


sql日志文件
<?php
namespace app\model;
use Illuminate\Events\Dispatcher;
use Illuminate\Database\Events\QueryExecuted;

/**
 * sql监听类,记录sql日志。
 */
class SqlListener extends Dispatcher
{
    /**
     * 注意:就改这个函数。也可以记录到文件日志里。
     *
     * @param  string|object  $event
     * @param  mixed  $payload
     * @param  bool  $halt
     * @return array|null
     */
    public function dispatch($event, $payload = [], $halt = false)
    {
        if ($event instanceof  QueryExecuted) {
            $sql=$event->sql;
            if ($event->bindings) {
                foreach($event->bindings as $v) {
                    $sql = preg_replace('/\\?/', "'". addslashes( $v)."'", $sql,1);
                }
            }
            echo "log: ".$sql."<br>";
        }
    }
}


主程序
<?php
namespace app\control;

use Illuminate\Database\Capsule\Manager;
use Illuminate\Events\Dispatcher;
use app\model\User;
use app\model\SqlListener;

class Ill 
{
    /**
     * 主程序。
     */
    public function hook() 
    {
        $capsule = new Manager ();
        $capsule->addConnection ( [ 
            'driver' => 'mysql',
            'host' => '127.0.0.1',
            'database' => 'test1',
            'username' => 'root',
            'password' => 'root',
            'charset' => 'utf8mb4',
            'collation' => 'utf8mb4_unicode_ci',
            'prefix' => '' 
        ] );
        $capsule->setAsGlobal ();
        $capsule->bootEloquent ();
        // 设置sql日志监听
        $capsule->setEventDispatcher ( new SqlListener () );
        // User模型类加钩子
        User::setEventDispatcher ( new Dispatcher () );
        User::observe ( \app\model\UserObserver::class );
        // 这句话单纯测试log
        $users = $capsule::select ( 'SELECT * FROM test2 limit 1' );
        
        // 下面几句测log + 钩子
        $user = new User ();
        $user->user = '11';
        $result = $user->save (); // 新模型添加
        $user->user = '22';
        $result = $user->save (); // 已经不是新模型,是已存在模型,所以是修改。
        
        $user = new User ();
        $user->user = '3'; // 故意填写过短的用户名
        $result = $user->save (); // 注意这里!因为创建模型前置函数creating返回假。
        if (! $result) {
            echo $user->get_errinfo () . "<br>";
        }
        
        echo 'all ok!';
    }
}


下面是浏览器输出结果
log: SELECT * FROM test2 limit 1
log: insert into `test2` (`user`) values ('11')
in UserObserver.created:120
log: update `test2` set `user` = '22' where `id` = '120'
in UserObserver.updated:120
creating: 用户名至少两个字符
all ok!


总结:总的来说,还是很好用的。但是,手动注册观察者的代码需要封装到函数里,在php应用程序的公共起始文件里被调用。


0
0
分享到:
评论

相关推荐

    Laravel开发-eloquent-uuid-for-key

    1. **安装扩展包**:通常我们可以使用`spatie/laravel-eloquent-has-many-deep`这个扩展包,它为Eloquent提供了对UUID的支持。通过Composer安装: ``` composer require spatie/laravel-eloquent-has-many-deep `...

    Laravel开发-eloquent-extended-cast-model

    Eloquent-Extended-Cast-Model 是一个扩展库,它增强了Eloquent模型的特性,允许开发者定义自定义的类型转换,从而能够更加灵活地管理和操作数据。 Eloquent ORM的核心概念包括模型(Model)、迁移(Migration)、...

    Laravel开发-eloquent-single-state-marking-store

    "Laravel开发-eloquent-single-state-marking-store"是一个专为Laravel设计的扩展,旨在支持单一状态标记存储,其灵感来源于Symfony的工作流程组件。这个项目的目标是帮助开发者更好地管理和跟踪对象的状态,特别是...

    Laravel开发-eloquent-extended-cast-model .zip

    这个压缩包“Laravel开发-eloquent-extended-cast-model .zip”很可能包含了一些关于如何扩展Eloquent模型的自定义类型转换(casts)的教程或示例代码。 Eloquent的模型类与数据库表一一对应,每个模型实例代表表中...

    Laravel开发-eloquent-log-lazy-loading

    Eloquent在进行关联加载时会触发`eloquent.retrieved`事件,我们可以监听这个事件并在适当的地方记录日志。 ```php use Illuminate\Support\Facades\Event; use Illuminate\Database\Eloquent\Model; Event::...

    Laravel开发-eloquent-single-table-inheritance

    在Laravel框架中,Eloquent ORM(对象关系映射)是其强大且优雅的数据操作工具。Eloquent提供了许多高级特性,其中包括单表继承(Single Table Inheritance,STI)。本教程将深入探讨如何在Laravel项目中利用...

    Laravel开发-eloquent-model-generator

    使用Eloquent-Model-Generator的步骤可能包括以下几点: 1. 安装:首先,你需要将该工具通过Composer添加到你的Laravel项目的依赖中,通常使用`composer require`命令。 2. 配置:配置文件中,你需要指定数据库连接...

    ros2-eloquent-20191122-windows-release-amd64.zip

    ROS是一个用于在不同进程间匿名的发布、订阅、传递信息的中间件。 ROS2系统的核心部分是ROS网络(ROS Graph)。ROS网络是指在ROS系统中不同的节点间相互通信的连接关系。 ROS Graph这里翻译成了ROS网络,因为我觉得...

    Laravel开发-eloquent-state-machine

    在Laravel框架中,Eloquent ORM(对象关系映射)是用于数据库操作的强大工具,而...通过`eloquent-state-machine-master`这个项目,我们可以学习并实践如何在Laravel项目中有效地集成和使用Eloquent State Machine。

    Laravel开发-eloquent-base-model

    "Laravel开发-eloquent-base-model" 主题聚焦于Eloquent ORM中的基础模型(Base Model),它是所有自定义模型类的基类,为开发者提供了许多便利的功能和接口。 Eloquent Base Model位于`Illuminate\Database\...

    php一些比较常用类库及例子

    以上只是PHP开发中常用类库的一部分,实际开发中还有更多优秀的类库,如Laravel的Eloquent ORM、Guzzle HTTP客户端库等,它们极大地提高了开发效率和代码质量。了解并熟练使用这些类库,将使你的PHP开发工作更加...

    Eloquent-Relationships-Advanced-Laravel-7-and-MySQL:Laravel和MySQL开发软件

    应用使用邮递员,失眠等用法$ git clone https://github.com/DanielArturoAlejoAlvarez/Eloquent-Relations-Laravel-7-and-MySQL[NAME APP]$ composer install$ copy .env.example .env$ php artisan key:generate$ ...

    Laravel开发-laravel-eloquent-mysqli

    总之,`laravel-eloquent-mysqli` 项目旨在帮助开发者了解和实践在 Laravel 中使用 mysqli 驱动进行数据库操作,这对于那些需要充分利用 MySQL 扩展特性的项目来说,是一个有价值的资源。在实际开发中,根据项目需求...

    Eloquent-ORM-Laravel-8.5-Relationships-Advanced:具有Laravel和MySQL的应用程序软件

    $ git clone https://github.com/DanielArturoAlejoAlvarez/Eloquent-ORM-Laravel-8.5-Relationships-Advanced[NAME APP] $ composer install $ copy .env.example .env $ php artisan key:generate $ php artisan ...

    Laravel开发-eloquent-search

    为了提高搜索性能,Eloquent-Search通常会配合事件监听器或队列处理索引的更新。每当模型被创建、更新或删除时,相应的索引也需要同步。可以监听`saved`、`updated`和`deleted`事件,然后触发索引操作。 此外,...

    Laravel开发-eloquent-postgres-uuids

    本项目"Laravel开发-eloquent-postgres-uuids"专门探讨了如何在PostgreSQL数据库中使用UUID作为Eloquent模型的主键。 首先,我们要了解Eloquent ORM,它是Laravel框架的核心部分,为开发者提供了简洁、优雅的方式来...

    Laravel开发-eloquent-custom

    4. **事件系统**:Eloquent模型支持事件监听,如`creating`, `created`, `updating`, `updated`, `saving`, `saved`, `deleting`, `deleted`等。这允许我们在数据保存或删除时执行自定义逻辑。 5. **自定义存储库...

    Laravel开发-eloquent-sortable

    要使用"eloquent-sortable",首先需要安装这个扩展。可以通过Composer(PHP的依赖管理工具)来完成,运行以下命令: ```bash composer require spatie/laravel-model-sort ``` 安装完成后,在你的模型中使用`...

    Laravel开发-eloquent-mongodb-repository

    "Laravel开发-eloquent-mongodb-repository"的主题就是关于如何在Laravel中利用Eloquent ORM来与MongoDB进行交互的实践教程。 首先,我们需要安装Jenssegers/Laravel-MongoDB扩展包,这个扩展提供了Eloquent模型对...

    Laravel开发-eloquent-search-map

    composer require arcanedev/eloquent-search-map ``` 然后,在你的模型中引入并使用`Arcanedev\\Searchable\\Searchable` Trait: ```php use Arcanedev\\Searchable\\Searchable; class YourModel extends ...

Global site tag (gtag.js) - Google Analytics