PHP 中的 mysqli fetch lengths函数

首页 / PHP入门教程 / PHP 中的 mysqli fetch lengths函数

mysqli fetch lengths - 语法

mysqli_fetch_lengths(result);

它用于返回输出中字段的长度

Sr.No 参数 & Description
1

result

它指定mysqli_query()、mysqli_store_result()或mysqli_use_result()返回的输出集标识符

mysqli fetch lengths - 返回值

如果INTEGER表示每列的大小,则返回数组;如果失败,则返回FALSE

链接:https://www.learnfk.comhttps://www.learnfk.com/php/php-mysqli-fetch-lengths.html

来源:LearnFk无涯教程网

mysqli fetch lengths - 示例

<?php
   $connection_mysql=mysqli_connect("localhost","user","password","db");
   
   if (mysqli_connect_errno($connection_mysql)){
      echo "Failed to connect to MySQL: " . mysqli_connect_error();
   }
   $sql="SELECT * FROM emp ";
   
   if ($result=mysqli_query($connection_mysql,$sql)){
      $row=mysqli_fetch_row($result);
   
      foreach (mysqli_fetch_lengths($result) as $i=>$val){
         printf("Field %2d has length: %2d\n",$i+1,$val);
      }
   
      mysqli_free_result($result);
   }
   mysqli_close($connection_mysql);
?>

祝学习愉快!(内容编辑有误?请选中要编辑内容 -> 右键 -> 修改 -> 提交!)

技术教程推荐

技术与商业案例解读 -〔徐飞〕

深入浅出区块链 -〔陈浩〕

MySQL实战45讲 -〔林晓斌〕

苏杰的产品创新课 -〔苏杰〕

手机摄影 -〔@随你们去〕

打造爆款短视频 -〔周维〕

容量保障核心技术与实战 -〔吴骏龙〕

现代React Web开发实战 -〔宋一玮〕

手把手教你落地DDD -〔钟敬〕

好记忆不如烂笔头。留下您的足迹吧 :)