>  기사  >  백엔드 개발  >  php +mysql mysql_fetch_lengths 教程_PHP教程

php +mysql mysql_fetch_lengths 教程_PHP教程

WBOY
WBOY원래의
2016-07-13 17:04:041079검색

mysql_fetch_lengths 的作用是判断mysql_fetch_array ( ) , mysql_fetch_assoc ( ) , mysql_fetch_object ( )或mysql_fetch_row ( )的长度,如果成功就返回一个陈列,否则就返回false;

mysql_fetch_lengths的语法.

mysql_fetch_lengths(data)
参数.
data:必选就是mysql_query返回的值
来我们来看看实例.

$sql = "SELECT * from Person WHERE Lastname='Refsnes'";
$result = mysql_query($sql,$con);
print_r(mysql_fetch_row($result));
print_r(mysql_fetch_lengths($result));
?>
输出结果.
<pre class="brush:php;toolbar:false">Array
(
[0] => Refsnes
[1] => Kai Jim
[2] => Taugata 2
[3] => 22
)
Array
(
[0] => 7
[1] => 7
[2] => 9
[3] => 2
)

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/630896.htmlTechArticlemysql_fetch_lengths 的作用是判断mysql_fetch_array ( ) , mysql_fetch_assoc ( ) , mysql_fetch_object ( )或mysql_fetch_row ( )的长度,如果成功就返回一...
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.