PHP PDOStatement::debugDumpParams讲解
pdostatement::debugdumpparams
pdostatement::debugdumpparams — 打印一条 sql 预处理命令(php 5 >= 5.1.0, pecl pdo >= 0.9.0)
说明
语法
bool pdostatement::debugdumpparams ( void )
直接打印出一条预处理语句包含的信息。提供正在使用的 sql 查询、所用参数(params)的数目、参数的清单、参数名、用一个整数表示的参数类型(paramtype)、键名或位置、值、以及在查询中的位置(如果当前 pod 驱动不支持,则为-1)。
此为一个用于调试的功能,在正常输出的情况下直接输出数据。
提示:和直接将结果输出到浏览器一样,可使用输出控制函数来捕获当前函数的输出,然后(例如)保存到一个string中。
只打印此时此刻语句中的参数。额外的参数不存储在语句中,也就不会被输出。
返回值
没有返回值。
实例
pdostatement::debugdumpparams()使用命名参数的例子
<?php /* 通过绑定 php 变量执行一条预处理语句 */ $calories = 150; $colour = 'red'; $sth = $dbh->prepare('select name, colour, calories from fruit where calories < :calories and colour = :colour'); $sth->bindparam(':calories', $calories, pdo::param_int); $sth->bindvalue(':colour', $colour, pdo::param_str, 12); $sth->execute(); $sth->debugdumpparams(); ?>
以上例程会输出:
sql: [96] select name, colour, calories
from fruit
where calories < :calories and colour = :colour
params: 2
key: name: [9] :calories
paramno=-1
name=[9] ":calories"
is_param=1
param_type=1
key: name: [7] :colour
paramno=-1
name=[7] ":colour"
is_param=1
param_type=2
pdostatement::debugdumpparams()
使用未命名参数的例子
<?php /* 通过绑定 php 变量执行一条预处理语句 */ $calories = 150; $colour = 'red'; $name = 'apple'; $sth = $dbh->prepare('select name, colour, calories from fruit where calories < ? and colour = ?'); $sth->bindparam(1, $calories, pdo::param_int); $sth->bindvalue(2, $colour, pdo::param_str); $sth->execute(); $sth->debugdumpparams(); ?>
以上例程会输出:
sql: [82] select name, colour, calories
from fruit
where calories < ? and colour = ?
params: 2
key: position #0:
paramno=0
name=[0] ""
is_param=1
param_type=1
key: position #1:
paramno=1
name=[0] ""
is_param=1
param_type=2
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接
上一篇: 一次存储过程参数嗅探定位流程总结
下一篇: python网络爬虫采集联想词示例