首页 > 开发 > PHP > 正文

php动态绑定变量的用法

2024-05-04 23:36:16
字体:
来源:转载
供稿:网友

这篇文章主要介绍了php动态绑定变量的用法,涉及php变量的判定与动态定义的相关技巧,需要的朋友可以参考下

本文实例讲述了php动态绑定变量的用法。分享给大家供大家参考。具体如下:

 

 
  1. private function bindVars($stmt,$params) { 
  2. if ($params != null) { 
  3. $types = ''//initial sting with types 
  4. foreach($params as $param) { 
  5. //for each element, determine type and add 
  6. if(is_int($param)) { 
  7. $types .= 'i'//integer 
  8. elseif (is_float($param)) { 
  9. $types .= 'd'//double 
  10. elseif (is_string($param)) { 
  11. $types .= 's'//string 
  12. else { 
  13. $types .= 'b'
  14. //blob and unknown 
  15. $bind_names[] = $types
  16. //first param needed is the type string 
  17. // eg: 'issss' 
  18. for ($i=0; $i<count($params);$i++) { 
  19. //go through incoming params and added em to array 
  20. $bind_name = 'bind' . $i
  21. //give them an arbitrary name 
  22. $$bind_name = $params[$i]; 
  23. //add the parameter to the variable variable 
  24. $bind_names[] = &$$bind_name
  25. //now associate the variable as an element in an array 
  26. //call the function bind_param with dynamic params 
  27. call_user_func_array(array($stmt,'bind_param'),$bind_names); 
  28. return $stmt//return the bound statement 

希望本文所述对大家的php程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表