mysql_fetch_lengths
(PHP 4, PHP 5)
mysql_fetch_lengths — 取得结果集中每个输出的长度
<h3>说明</h3>
array <strong>mysql_fetch_lengths</strong>
( resource <code>$result</code>
)
<p>
以数组返回上一次用
mysql_fetch_row()
取得的行中每个字段的长度,如果出错返回 <strong><code>FALSE</code></strong>。
</p>
<p>
<strong>mysql_fetch_lengths()</strong> 将上一次
mysql_fetch_row(),mysql_fetch_array()
和 mysql_fetch_object()
所返回的每个列的长度储存到一个数组中,偏移量从 0 开始。
</p>
<p>
参见 mysql_fetch_row()。
</p>