mysqli_stmt_send_long_data
Function • Params and return types changed in PHP 8.0
mysqli_stmt_send_long_data Function synopsis
mysqli_stmt_send_long_data(
mysqli_stmt $statement,
int $param_num,
string $data
): bool
Parameters
$statement
Typemysqli_stmt
$param_num
Typeint
$data
Typestring
Return value
Typebool
Changes to the mysqli_stmt_send_long_data Function
PHP 8.0
- Return type added:
bool - Parameter name of parameter #1 changed:
$stmtto$statement - Parameter type added for parameter #1 (
$statement):mysqli_stmt - Parameter name of parameter #2 changed:
$param_nrto$param_num - Parameter type added for parameter #2 (
$param_num):int - Parameter type added for parameter #3 (
$data):string
mysqli_stmt_send_long_data(
- $stmt,
+ mysqli_stmt $statement,
- $param_nr,
+ int $param_num,
- $data
+ string $data
- )
+ ): bool mysqli_stmt_send_long_data Function Availability
mysqli_stmt_send_long_data Function Availability| PHP Version | Availability |
|---|---|
| PHP 8.6Upcoming Release | Yes |
| PHP 8.5Supported (Latest) | Yes |
| PHP 8.4Supported | Yes |
| PHP 8.3Security-Fixes Only | Yes |
| PHP 8.2Security-Fixes Only | Yes |
| PHP 8.1Unsupported | Yes |
| PHP 8.0Unsupported | Yes |
| PHP 7.4Unsupported | Yes |
| PHP 7.3Unsupported | Yes |
| PHP 7.2Unsupported | Yes |
| PHP 7.1Unsupported | Yes |
| PHP 7.0Unsupported | Yes |
| PHP 5.6Unsupported | Yes |
| PHP 5.5Unsupported | Yes |
| PHP 5.4Unsupported | Yes |
| PHP 5.3Unsupported | Yes |