3
2

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 5 years have passed since last update.

unserialize関数の第2引数($options)

Last updated at Posted at 2019-04-07

$_SESSIONにシリアライズ化したオブジェクトを保存して、別の場所でデシリアライズしていたところ
PhpStormに第2引数を指定しろと言われた。

UNADJUSTEDNONRAW_thumb_523.jpg

PHP7.0からは第2引数でデシリアライズの対象となるクラスを指定できるらしい。

$foo = unserialize($_SESSION['foo'], ['allowed_classes' => ['Foo']]);

こう書けばおこられない。

オブジェクトインジェクションていう脆弱性の対策みたい。
https://blog.tokumaru.org/2017/09/introduction-to-object-injection.html

追記

class Foo
{
   private $bars= [];

   public function add(Bar $bar)
   {
       $this->bars[] = $bar;
   }
}

第2引数で指定したクラスの中で別のクラスを使用している場合には
デシリアライズする際にエラーになった。
まぁそんな気はしてた。

$foo = unserialize($_SESSION['foo'], ['allowed_classes' => ['Foo', 'Bar']]);

第2引数で同じように指定すれば大丈夫。

3
2
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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?