|
mysqli_stmt::$param_countmysqli_stmt_param_countReturns the number of parameters for the given statement DescriptionObject-oriented style int$mysqli_stmt->param_count;
Procedural style
int mysqli_stmt_param_count(mysqli_stmt
$statement )Returns the number of parameter markers present in the prepared statement. Parameters
Return ValuesReturns an integer representing the number of parameters. ExamplesExample #1 Object-oriented style
Example #2 Procedural style
The above examples will output: Statement has 2 markers. See Also
|