mysql_result
(PHP 4, PHP 5)
mysql_result — 取得结果数据
<h3>说明</h3>
mixed <strong>mysql_result</strong>
( resource <code>$result</code>
, int <code>$row</code>
[, mixed <code>$field</code>
] )
<p>
<strong>mysql_result()</strong> 返回 MySQL
结果集中一个单元的内容。字段参数可以是字段的偏移量或者字段名,或者是字段表点字段名(tablename.fieldname)。如果给列起了别名('select
foo as bar from...'),则用别名替代列名。
</p>
<p>
当作用于很大的结果集时,应该考虑使用能够取得整行的函数(在下边指出)。这些函数在一次函数调用中返回了多个单元的内容,比
<strong>mysql_result()</strong>
快得多。此外注意在字段参数中指定数字偏移量比指定字段名或者
tablename.fieldname 要快得多。
</p>
<p>
调用 <strong>mysql_result()</strong>
不能和其它处理结果集的函数混合调用。
</p>
<p>
<p><strong>Example #1 <strong>mysql_result()</strong> 例子</strong></p>
<?php
$link = mysql_connect("localhost", "mysql_user", "mysql_password")
or die("Could not connect: " . mysql_error());
$result = mysql_query("SELECT name FROM work.employee")
or die("Could not query: . mysql_error());
echo mysql_result($result,2); // outputs third employee's name
mysql_close($link);
?>
</p>
<p>
推荐使用高性能的替代函数:mysql_fetch_row(),mysql_fetch_array(),mysql_fetch_assoc()
和 mysql_fetch_object()。
</p>