dindValue 和 bindParam 区别?
唯一区别就是传递参数时:
`dindValue(1, "Mical", PDO::PARAM_STR)` 第二个参数可以直接传值,
`bindParam(1, $username, PDO::PARAM_STR)` 第二个参数必须是php变量