PHP mysql_field_seek() ফাংশন
সংজ্ঞা ও ব্যবহার
mysql_field_seek() ফাংশন ফলাফল সংকেতাঙ্কের ইনডেক্স পিন্ডারকে নির্দিষ্ট ফিল্ড অবস্থান নির্ধারণ করে
যদি সফল হয়, তবে true ফিরে দেয়, যদি ব্যর্থ হয়, তবে false ফিরে দেয়。
বিন্যাস
mysql_field_seek(data,field_offset)
প্যারামিটার | বর্ণনা |
---|---|
data | অপরিহার্য। ব্যবহার্য তথ্য ইনডেক্স পিন্ডার mysql_query() The returned results. |
field_offset | Required. Indicates which field to start returning from. 0 indicates the first field. |
Example
<?php $con = mysql_connect("localhost", "hello", "321"); if (!$con) { die('Could not connect: ' . mysql_error()); } $db_selected = mysql_select_db("test_db",$con); $sql = "SELECT * from Person"; $result = mysql_query($sql,$con); // Jump to the fourth field mysql_field_seek($result,3); print_r(mysql_fetch_field($result)); mysql_close($con); ?>
Output:
stdClass Object ( [name] => Age [table] => Person [def] => [max_length] => 2 [not_null] => 0 [primary_key] => 0 [multiple_key] => 0 [unique_key] => 0 [numeric] => 1 [blob] => 0 [type] => int [unsigned] => 0 [zerofill] => 0 )