update : 2015.11.03
php.shukuma.com검색:
|
maxdb_stmt_param_countmaxdb_stmt::param_count(PECL maxdb >= 1.0) maxdb_stmt_param_count -- maxdb_stmt::param_count — Returns the number of parameter for the given statement 설명절차식 형식
int maxdb_stmt_param_count
( resource
$stmt
)객체 기반 형식 int $maxdb_stmt->param_count;
maxdb_stmt_param_count() returns the number of parameter markers present in the prepared statement. 반환값returns an integer representing the number of parameters. 예제Example #1 객체 기반 형식
<?php Example #2 절차식 형식
<?php 위 예제의 출력 예시: Statement has 2 markers. |