최신 웹 개발 튜토리얼
 

PHP mysqli_stmt_init() Function

<참고 PHP MySQLi

성명을 초기화와 함께 사용하는 객체를 반환 mysqli_stmt_prepare() :

<?php
$con=mysqli_connect("localhost","my_user","my_password","my_db");
// Check connection
if (mysqli_connect_errno())
  {
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
  }

$city="Sandnes";

// Create a prepared statement
$stmt=mysqli_stmt_init($con);

if (mysqli_stmt_prepare($stmt,"SELECT District FROM City WHERE Name=?"))
  {

  // Bind parameters
  mysqli_stmt_bind_param($stmt,"s",$city);

  // Execute query
  mysqli_stmt_execute($stmt);

  // Bind result variables
  mysqli_stmt_bind_result($stmt,$district);

  // Fetch value
  mysqli_stmt_fetch($stmt);

  printf("%s is in district %s",$city,$district);

  // Close statement
  mysqli_stmt_close($stmt);
  }

mysqli_close($con);
?>

정의 및 사용

mysqli_stmt_init() 함수가 문을 초기화하고 적합한 객체 반환 mysqli_stmt_prepare() .


통사론

mysqli_stmt_init( connection ) ;

매개 변수 기술
connection 필요합니다. 사용하는 MySQL의 연결을 지정

기술적 세부 사항

반환 값 : 개체를 반환
PHP 버전 : 5+

<참고 PHP MySQLi