目录

PHP mysqli_debug() 函数

❮ PHP MySQLi 参考

示例

在本地计算机上的 "/temp/client.trace" 中创建跟踪文件:

<?php
mysqli_debug("d:t:o,/temp/client.trace");
?>

定义和用法

mysqli_debug()函数用于执行调试操作。

笔记:为了使用该功能,必须编译MySQL客户端库以支持调试。


语法

mysqli_debug( message);

参数值

Parameter Description
message Required. A string that represents the debugging operation to perform

技术细节

返回值: 真的
PHP 版本: 5+

❮ PHP MySQLi 参考