這篇文章給大家介紹PHP中怎么獲取字段數(shù)據(jù)類(lèi)型,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。
創(chuàng)新互聯(lián)專(zhuān)注于納雍網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠(chéng)為您提供納雍營(yíng)銷(xiāo)型網(wǎng)站建設(shè),納雍網(wǎng)站制作、納雍網(wǎng)頁(yè)設(shè)計(jì)、納雍網(wǎng)站官網(wǎng)定制、重慶小程序開(kāi)發(fā)服務(wù),打造納雍網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供納雍網(wǎng)站排名全網(wǎng)營(yíng)銷(xiāo)落地服務(wù)。
MySQL_field_type()函數(shù)可獲得字段的數(shù)據(jù)類(lèi)型,該函數(shù)的語(yǔ)法格式如下。
string mysql_field_type ( resource $result, int $field_offset )
mysql_field_type()函數(shù)類(lèi)似于函數(shù)mysql_field_name(),不過(guò)mysql_field_type()函數(shù)返回的是字段的數(shù)據(jù)類(lèi)型。它的參數(shù)的描述如下。
l result:mysql_query()函數(shù)執(zhí)行后返回的結(jié)果集。
l field_offset:字段的偏移量,起始值為零。
使用mysql_field_type()函數(shù)的示例代碼如下:
代碼23-12 光盤(pán)\codes\第23章\23.3\mysql_field_type.php
< ?php
$connection=mysql_connect("localhost",
"root","root") or die("連接mysql_select_db("sunyang",$connection)
or die("選擇數(shù)據(jù)庫(kù)失敗");$query="select * from employee";
$result=mysql_query($query) or die
("查詢(xún)數(shù)據(jù)失敗");//執(zhí)行查詢(xún)
echo mysql_field_type($result,0);
//***個(gè)字段的數(shù)據(jù)類(lèi)型
echo "< br>";
echo mysql_field_type($result,1);
//第二個(gè)字段的數(shù)據(jù)類(lèi)型
echo "< br>";
echo mysql_field_type($result,2);
//第三個(gè)字段的數(shù)據(jù)類(lèi)型
mysql_free_result($result);
mysql_close();
?>
關(guān)于PHP中怎么獲取字段數(shù)據(jù)類(lèi)型就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。