Phalcon 框架如何在model执行完毕,如何打印SQL?

发布于 2022-09-04 14:38:49 字数 550 浏览 15 评论 0

Phalcon 框架如何在model执行完毕,如何打印SQL?

 $where = [

                'conditions' => "stat_date BETWEEN :start_stat_date: AND :end_stat_date:",
                'bind'       => [
                    'start_stat_date' =>date('Y-m-d', strtotime('-1 day')),
                    'end_stat_date' => date('Y-m-d', strtotime('-7 day')),
                ],

                'columns'=>'sum(day_reg_act_parent_num) AS count',
            ];

      $user  = $model->findFirst($where);
      
      如何打印出上面语句最后构造成的SQL呢?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼眸里的那抹悲凉 2022-09-11 14:38:49

在DI注册DB服务的时候,执行SQL监听事件:

use Phalcon\Db\Profiler as DbProfiler;
use Phalcon\Mvc\Model\Manager as ModelsManager;

$di -> setShared('db', function () use($config) {
    $dbconfig = $config -> database -> db;
    $dbconfig = $dbconfig -> toArray();
    if (!is_array($dbconfig) || count($dbconfig)==0) {
        throw new \Exception("the database config is error");
    }
    $eventsManager = new \Phalcon\Events\Manager();
    // 分析底层sql性能,并记录日志
    $profiler = new DbProfiler();
    $eventsManager -> attach('db', function ($event, $connection) use ($profiler) {
        if($event -> getType() == 'beforeQuery'){
            //在sql发送到数据库前启动分析
            $profiler -> startProfile($connection -> getSQLStatement());
        }
        if($event -> getType() == 'afterQuery'){
            //在sql执行完毕后停止分析
            $profiler -> stopProfile();
            //获取分析结果
            $profile = $profiler -> getLastProfile();
            $sql = $profile->getSQLStatement();
            $executeTime = $profile->getTotalElapsedSeconds();
            //日志记录
            $logger = \Marser\App\Core\PhalBaseLogger::getInstance();
            $logger -> write_log("{$sql} {$executeTime}", 'debug');
        }
    });
    $connection = new \Phalcon\Db\Adapter\Pdo\Mysql(array(
        "host" => $dbconfig['host'], "port" => $dbconfig['port'],
        "username" => $dbconfig['username'],
        "password" => $dbconfig['password'],
        "dbname" => $dbconfig['dbname'],
        "charset" => $dbconfig['charset'])
    );
    /* 注册监听事件 */
    $connection->setEventsManager($eventsManager);
    return $connection;
});

具体参考PhalconCMS的代码:https://github.com/KevinJay/P...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文