(PHP 4, PHP 5)
mysql_result — 取得結果數據
說明
mixed mysql_result ( resource $result , int $row [, mixed $field ] )
mysql_result() 返回 MySQL 結果集中一個單元的內容。欄位參數可以是欄位的偏移量或者欄位名,或者是欄位表點欄位名(tablename.fieldname)。如果給列起了別名('select foo as bar from...'),則用別名替代列名。
當作用於很大的結果集時,應該考慮使用能夠取得整行的函式(在下邊指出)。這些函式在一次函式調用中返回了多個單元的內容,比 mysql_result() 快得多。此外注意在欄位參數中指定數字偏移量比指定欄位名或者 tablename.fieldname 要快得多。
調用 mysql_result() 不能和其它處理結果集的函式混合調用。
實例
<?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);
?>