How to use php mysqli_fetch_lengths function

青灯夜游
Release: 2023-02-22 20:40:01
Original
2302 people have browsed it

php mysqli_fetch_lengths() function returns the field length in the result set. The syntax is mysqli_fetch_lengths(result); if successful, the function returns an array of numbers. If there is an error or there are no other rows, it returns false.

How to use php mysqli_fetch_lengths function

php How to use the mysqli_fetch_lengths() function?

The mysqli_fetch_lengths() function returns the field length in the result set.

Syntax:

mysqli_fetch_lengths(result);
Copy after login

Parameters

result: Required. Specifies the result set identifier returned by mysqli_query(), mysqli_store_result(), or mysqli_use_result().

Return value: If successful, the function returns an array of numbers. If there is an error or there are no other rows, it returns false.

php mysqli_fetch_lengths() function example

Returns the field length in the result set:

$val)
    {
        printf("字段 %2d 长度为: %2d",$i+1,$val);
        echo "
"; } // 释放结果集 mysqli_free_result($result); } mysqli_close($con); ?>
Copy after login

The above is the detailed content of How to use php mysqli_fetch_lengths function. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!