💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# swoole\_mysql->on [TOC] 设置事件回调函数。目前仅支持`onClose`事件回调。 ~~~ function swoole_mysql->on($event_name, callable $callback); ~~~ ## onClose事件 当连接关闭时回调此函数。 ~~~ $db->on('Close', function($db){ echo "MySQL connection is closed.\n"; }); ~~~