unserialize関数の第2引数($options)
$_SESSIONにシリアライズ化したオブジェクトを保存して、別の場所でデシリアライズしていたところ
PhpStormに第2引数を指定しろと言われた。
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;
}
}
class Foo
{
private $bars= [];
public function add(Bar $bar)
{
$this->bars[] = $bar;
}
}
第2引数で指定したクラスの中で別のクラスを使用している場合には
デシリアライズする際にエラーになった。
まぁそんな気はしてた。
$foo = unserialize($_SESSION['foo'], ['allowed_classes' => ['Foo', 'Bar']]);
第2引数で同じように指定すれば大丈夫。
Author And Source
この問題について(unserialize関数の第2引数($options)), 我々は、より多くの情報をここで見つけました https://qiita.com/tkek321/items/a5630c4330e727ac699a著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .