0
1

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.

whereRawで配列をバインドする方法

Posted at

LaravelでwhereRawを使う際、$bindingsを使用すればSQLインジェクションは起きません。

しかし、$bindingsに配列を使用するとエラーが発生するためエラーが発生しない方法を考えてみました。

通常の使用方法

SQLインジェクションが起きる可能性がある使い方

$user_id = 1;

$builder->select('name')
    ->from('person')
    ->whereRaw('user_id = ' . $user_id);

SQLインジェクションを回避するために$bindingsを使用します。

正しい使い方

$user_id = 1;

$builder->select('name')
    ->from('person')
    ->whereRaw('user_id = :user_id', ['user_id', $user_id]);

配列を使用した場合

配列を渡してみる。

$user_ids = [1, 2, 3];

$builder->select('name')
    ->from('person')
    ->whereRaw('user_id in :user_ids', ['user_ids', $user_ids]);

実行した場合、Array to string conversion at......というエラーが発生します。

エラーが発生しない書き方

$user_ids = [1, 2, 3];
$bindings = trim(str_repeat('?,', count($user_ids)), ',');

$builder->select('name')
    ->from('person')
    ->whereRaw('user_id in (' . $bindings . ')', $user_ids);

この書き方でエラーが発生しないと思います!

0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?