时间:2021-07-01 10:21:17 帮助过:10人阅读
实现结果:
解析后的html源码:
<table border=‘1‘> <tr> <th>id</th><th>name</th><th>password</th><th>email</th><th>age</th> </tr> <tr> <td>4</td><td>huahua</td><td>e10adc3949ba59abbe56e057f20f883e</td><td>huahua@qq.com</td><td>16</td> </tr> <tr> <td>32</td><td>haha</td><td>e10adc3949ba59abbe56e057f20f883e</td><td>test@qq.com</td><td>16</td> </tr> <tr> <td>28</td><td>test</td><td>e10adc3949ba59abbe56e057f20f883e</td><td>test@qq.com</td><td>16</td> </tr> <tr> <td>31</td><td>??????</td><td>e10adc3949ba59abbe56e057f20f883e</td><td>test@qq.com</td><td>16</td> </tr> </table>
下面是在过程中熟悉的mysqli函数:
// mysqli_fetch_fields() 返回结果中代表字段的对象的数组。 $field_info=mysqli_fetch_fields($res); var_dump($field_info); //返回的是一个二位数组,如下: // array(5) { // [0]=> object(stdClass)#3 (13) // { ["name"]=> string(2) "id" // ["orgname"]=> string(2) "id" // ["table"]=> string(5) "user1" // ["orgtable"]=> string(5) "user1" // ["def"]=> string(0) "" // ["db"]=> string(4) "user" // ["catalog"]=> string(3) "def" // ["max_length"]=> int(2) // ["length"]=> int(11) // ["charsetnr"]=> int(63) // ["flags"]=> int(49667) // ["type"]=> int(3) // ["decimals"]=> int(0) // } foreach ($field_info as $key =>$value) { // echo "<br/>".$val->name; echo "<br/>.-----"; echo $key; echo "========="; echo $value->name; }
结果:
//数字为下标 .-----0=========id .-----1=========name .-----2=========password .-----3=========email .-----4=========age
// mysqli_fetch_field() 函数从结果集中取得下一字段(列),并作为对象返回。 while ($field_info=mysqli_fetch_field($res)) { echo "<br/>".$field_info->name; }
结果:
id
name
password
email
age
【二十一】基于mysqli的表格数据练习
标签:分享 data ror 连接失败 test cat nbsp net error