update : 2015.11.03
php.shukuma.com검색:
|
mysqli_stmt::bind_resultmysqli_stmt_bind_result(PHP 5) mysqli_stmt::bind_result -- mysqli_stmt_bind_result — Binds variables to a prepared statement for result storage 설명객체 기반 형식 절차식 형식 Binds columns in the result set to variables.
When mysqli_stmt_fetch() is called to fetch data, the
MySQL client/server protocol places the data for the bound columns into
the specified variables
반환값
성공 시 예제Example #1 객체 기반 형식
<?php Example #2 절차식 형식
<?php 위 예제들의 출력: AFG Afghanistan ALB Albania DZA Algeria ASM American Samoa AND Andorra 참고
|