當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP mysqli_stmt_send_long_data()用法及代碼示例



定義和用法

如果表的列之一是 BLOB 類型的 TEXT,則mysqli_stmt_send_long_data()函數用於將數據分塊發送到該列。

您無法使用此函數關閉持久連接。

用法

mysqli_stmt_send_long_data($stmt);

參數

Sr.No 參數及說明
1

stmt(Mandatory)

這是一個表示準備好的語句的對象。

2

param_nr(Mandatory)

這是一個整數值,表示您需要將給定數據關聯到的參數。

3

data(Mandatory)

這是一個字符串值,表示要發送的數據。

返回值

PHP mysqli_stmt_send_long_data() 函數返回一個布爾值,成功時為真,失敗時為假。

PHP版本

這個函數最初是在 PHP 版本 5 中引入的,適用於所有後續版本。

示例

以下示例演示了 mysqli_stmt_send_long_data() 函數的用法(程序風格) -

<?php
   //Creating a connection
   $con = mysqli_connect("localhost", "root", "password", "mydb");

   //Creating a table
   mysqli_query($con, "CREATE TABLE test(message BLOB)");
   print("Table Created \n");

   //Inserting data
   $stmt = mysqli_prepare($con, "INSERT INTO test values(?)");

   //Binding values to the parameter markers
   mysqli_stmt_bind_param($stmt, "b", $txt);
   $txt = NULL;

   $data = "This is sample data";

   mysqli_stmt_send_long_data($stmt, 0, $data);
   print("Data Inserted");

   //Executing the statement
   mysqli_stmt_execute($stmt);
   //Closing the statement
   mysqli_stmt_close($stmt);
   //Closing the connection
   mysqli_close($con);
?>

這將產生以下結果 -

Table Created
Data Inserted

執行上述程序後,測試表的內容如下 -

mysql> select * from test;
+---------------------+
| message             |
+---------------------+
| This is sample data |
+---------------------+
1 row in set (0.00 sec)

示例

在麵向對象風格中,這個函數的語法是 $stmt->send_long_data();以下是麵向對象樣式 $minus 中此函數的示例;

假設我們有一個名為 foo.txt 的文件,其中包含消息你好,歡迎來到 Tutorialspoint。

<?php
   //Creating a connection
   $con = new mysqli("localhost", "root", "password", "mydb");

   //Creating a table
   $con -> query("CREATE TABLE test(message BLOB)");
   print("Table Created \n");

   //Inserting values into the table using prepared statement
   $stmt = $con -> prepare("INSERT INTO test values(?)");

   //Binding values to the parameter markers
   $txt = NULL;
   $stmt->bind_param("b", $txt);

   $fp = fopen("foo.txt", "r");
   while (!feof($fp)) {
      $stmt->send_long_data( 0, fread($fp, 8192));
   }
   print("Data Inserted");
   fclose($fp);

   //Executing the statement
   $stmt->execute();
   //Closing the statement
   $stmt->close();
   //Closing the connection
   $con->close();
?>

這將產生以下結果 -

Table Created
Data Inserted

執行上述程序後,測試表的內容如下 -

mysql> select * from test;
+---------------------------------------------+
| message                                     |
+---------------------------------------------+
| Hello how are you welcome to Tutorialspoint |
+---------------------------------------------+
1 row in set (0.00 sec)

相關用法


注:本文由純淨天空篩選整理自 PHP mysqli_stmt_send_long_data() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。