Heim  >  Artikel  >  Backend-Entwicklung  >  php存储过程调用举例

php存储过程调用举例

WBOY
WBOYOriginal
2016-07-25 09:05:261247Durchsuche
  1. //比如要调用的存储过程为gxtj(a,b)

  2. $db=new mysqli("localhost","ssss","aaaaa","bbbb");
  3. mysqli_query($db,"SET NAMES utf8");
  4. $result=$db->query("call gxtj($year,$jd)"); // gxtj是mysql的存储过程名称 [color=gray][/color]
  5. while( $row = $result->fetch_array(MYSQLI_ASSOC)) //完成从返回结果集中取出一行
  6. {
  7. while ($key=key($row)){ //依次取得字段名
  8. $value=current($row); //依次取得字段值
  9. }
  10. }
复制代码


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn