2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

execute関数の使い方

Posted at

##execute関数とは?
execute関数 = PHPの標準関数でプリペアドステートメントを実行する際に使われる関数。
標準関数一覧(https://www.php.net/manual/ja/indexes.functions.php)
プリペアドステートメント = SQLを使ってDBへ通信をする際に使われる値をサニタイズする仕組み。
サニタイズについて今回は省略しますので別の記事に投稿します。

##execute関数の使い方
execute関数を使う前にPDOオブジェクトを作成してDBへの接続プリペアドステートメントのSQLをprepare関数を使って設定しておきます。
設定できた上でexecute関数を使うことでSQL文を実行可能です。
prepare関数についても別の記事に投稿します。

$変数名 = new PDO(データベース接続情報, ユーザーID, パスワード); //DB接続
$stmt = $変数名->prepare(SQL文); //実行準備
$変数名->execute(); //実行

参考元はこちら
execute関数
(https://techacademy.jp/magazine/40771)
プリペアドステートメント
(https://webukatu.com/wordpress/blog/1638/#i-2)
(https://techacademy.jp/magazine/40771)

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?